7f75f5eb1e
*Due space limitations only the debug version of kenobigc is supported, this means there is a bit less space for cheats. git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@2 be6c1b03-d731-4111-a574-e37d80d43941
9 lines
277 B
C
9 lines
277 B
C
#include <stdarg.h>
|
|
#include "string.h"
|
|
|
|
char * strstr ( const char *str1, const char *str2);
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
int _sprintf( char *buf, const char *fmt, ... );
|
|
int dbgprintf( const char *fmt, ...);
|
|
void hexdump(void *d, int len);
|