mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
18 lines
346 B
C
18 lines
346 B
C
#include "common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void LMS_SetMemFuncs(void *(*alloc)(size_t size), void (*free)(void *ptr));
|
|
|
|
// internal
|
|
void *LMSi_Malloc(size_t size);
|
|
void LMSi_Free(void *ptr);
|
|
int LMSi_MemCmp(const char *p1, const char *p2, int n);
|
|
void LMSi_MemCopy(char *p1, const char *p2, int n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|