qse/ase/lsp/misc.h

25 lines
417 B
C
Raw Normal View History

2006-10-23 14:44:43 +00:00
/*
2006-10-26 09:31:28 +00:00
* $Id: misc.h,v 1.3 2006-10-26 09:31:28 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
#ifdef __cplusplus
}
#endif
#endif