qse/ase/lsp/misc.h

28 lines
514 B
C
Raw Normal View History

2006-10-23 14:44:43 +00:00
/*
2006-10-24 04:22:40 +00:00
* $Id: misc.h,v 1.2 2006-10-24 04:22:39 bacon Exp $
2006-10-23 14:44:43 +00:00
*/
2006-10-24 04:22:40 +00:00
#ifndef _ASE_LSP_MISC_H_
#define _ASE_LSP_MISC_H_
2006-10-23 14:44:43 +00:00
2006-10-24 04:22:40 +00:00
#ifndef _ASE_LSP_LSP_H_
#error Never include this file directly. Include <ase/lsp/lsp.h> instead
2006-10-23 14:44:43 +00:00
#endif
#ifdef __cplusplus
extern "C" {
#endif
2006-10-24 04:22:40 +00:00
void* ase_lsp_memcpy (void* dst, const void* src, ase_size_t n);
void* ase_lsp_memset (void* dst, int val, ase_size_t n);
2006-10-23 14:44:43 +00:00
2006-10-24 04:22:40 +00:00
int ase_lsp_abort (ase_lsp_t* lsp,
const ase_char_t* expr, const ase_char_t* file, int line);
2006-10-23 14:44:43 +00:00
#ifdef __cplusplus
}
#endif
#endif