mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
d3d4bd253c
* d_tag_processor WIP * Progress * Unconst * Fix switch command (thanks Roeming!) * Match a random text related file instead * More progress * More progress * No missing breaks * Some repair * Some repair and shuffling * More repair * a bit better * a bit better 2 * what a switch order * Closer unrolling * Minor cleanup * Fix accidental cases * More fixes * even better * More fixes * Down to regswaps * Some renames * Review feedback * cleanup more sdata2 values and eventFlowTextProcessingRelated match --------- Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
23 lines
399 B
C
23 lines
399 B
C
#ifndef LIBMS_LIBMS_H
|
|
#define LIBMS_LIBMS_H
|
|
|
|
#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
|
|
|
|
#endif
|