2002-10-07 15:48:42 +00:00
|
|
|
/* Fully rewritten to use glib rather than S-Lang replacements */
|
2002-10-07 04:41:03 +00:00
|
|
|
|
|
|
|
#ifndef _JD_MACROS_H_
|
|
|
|
#define _JD_MACROS_H_
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2002-10-07 15:48:42 +00:00
|
|
|
#define SLMEMSET(x,y,z) memset(x,y,z)
|
|
|
|
#define SLMEMCPY(x,y,z) memcpy(x,y,z)
|
2002-10-07 04:41:03 +00:00
|
|
|
#define SLfree(x) g_free(x)
|
|
|
|
#define SLmalloc(x) g_malloc(x)
|
|
|
|
#define _SLvsnprintf g_vsnprintf
|
|
|
|
|
|
|
|
#endif /* _JD_MACROS_H_ */
|