first commit

This commit is contained in:
2019-05-25 23:11:05 -04:00
commit 16f48376bc
6139 changed files with 990356 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef __UTIL_H__
#define __UTIL_H__
bool reg_match( const char * input, const char * regexp, char * ret=NULL, int sz=0, int * pos = NULL );
//char * urlencode(const char * buf); // Encode a string using URL-encoding
char * urlencode(const char * buf, char *, int ); // Encode a string using URL-encoding
//char * urldecode( char * buf); // Decode a string using URL-encoding
char * urldecode( char * buf, char *, int ); // Decode a string using URL-encoding
#endif