2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2008-03-04 05:20:05 +00:00
|
|
|
* $Id: misc.h 117 2008-03-03 11:20:05Z baconevi $
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASE_LSP_MISC_H_
|
|
|
|
#define _ASE_LSP_MISC_H_
|
|
|
|
|
|
|
|
#ifndef _ASE_LSP_LSP_H_
|
|
|
|
#error Never include this file directly. Include <ase/lsp/lsp.h> instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|