qse/ase/lsp/misc.h

27 lines
433 B
C
Raw Normal View History

2006-10-23 14:44:43 +00:00
/*
2007-02-03 10:52:36 +00:00
* $Id: misc.h,v 1.4 2007-02-03 10:51:52 bacon Exp $
*
* {License}
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
#ifdef __cplusplus
}
#endif
#endif