00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef __TOYPARSE_INTERNAL_H__
00014 #define __TOYPARSE_INTERNAL_H__
00015
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023
00024 #include <SDL/begin_code.h>
00025
00027 DECLSPEC TokenType *SDLCALL TokensToType(const char **tokens, const char **table[]);
00028
00033 DECLSPEC int SDLCALL FindInList(const char *str, const char *list[]);
00034
00036 DECLSPEC int SDLCALL CompareType(const char *str, const char *typestr);
00037
00038 DECLSPEC char **SDLCALL Explode(const char *str);
00039 DECLSPEC void SDLCALL FreeStrList(char **str);
00040
00041 #include <SDL/close_code.h>
00042
00043 #ifdef __cplusplus
00044 }
00045 #endif
00046
00047 #endif