83f55aa55c3c8a5c2e4212381cbd718daa30b8ac
[supertux.git] / src / squirrel / include / sqstdstring.h
1 /*      see copyright notice in squirrel.h */\r
2 #ifndef _SQSTD_STRING_H_\r
3 #define _SQSTD_STRING_H_\r
4 \r
5 #ifdef __cplusplus\r
6 extern "C" {\r
7 #endif\r
8 \r
9 //#define SQRex_True 1\r
10 //#define SQRex_False 0\r
11 \r
12 typedef unsigned int SQRexBool;\r
13 typedef struct SQRex SQRex;\r
14 \r
15 typedef struct {\r
16         const SQChar *begin;\r
17         int len;\r
18 } SQRexMatch;\r
19 \r
20 SQUIRREL_API SQRex *sqstd_rex_compile(const SQChar *pattern,const SQChar **error);\r
21 SQUIRREL_API void sqstd_rex_free(SQRex *exp);\r
22 SQUIRREL_API SQBool sqstd_rex_match(SQRex* exp,const SQChar* text);\r
23 SQUIRREL_API SQBool sqstd_rex_search(SQRex* exp,const SQChar* text, const SQChar** out_begin, const SQChar** out_end);\r
24 SQUIRREL_API SQBool sqstd_rex_searchrange(SQRex* exp,const SQChar* text_begin,const SQChar* text_end,const SQChar** out_begin, const SQChar** out_end);\r
25 SQUIRREL_API int sqstd_rex_getsubexpcount(SQRex* exp);\r
26 SQUIRREL_API SQBool sqstd_rex_getsubexp(SQRex* exp, int n, SQRexMatch *subexp);\r
27 \r
28 SQUIRREL_API SQRESULT sqstd_register_stringlib(HSQUIRRELVM v);\r
29 \r
30 #ifdef __cplusplus\r
31 } /*extern "C"*/\r
32 #endif\r
33 \r
34 #endif /*_SQSTD_STRING_H_*/\r