util.h
上传用户:qys8201
上传日期:2021-12-11
资源大小:978k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef _UTIL_H_
  2. #define _UTIL_H_
  3. int strcatsafe( char *dest, int destlen , char *append );
  4. void prepareDirectories(char *base);
  5. void easyGetTokenFromString( char *src,int count,char*output,int len );
  6. void remove_r( char *s );
  7. void makeDirFilename( char *out , int outlen ,
  8.                   char *base , int dirchar , char *child );
  9. int isFile( char *fn );
  10. int createFile( char *fn , char *line );
  11. char *   makeStringFromEscaped( char* src );
  12. char *   makeEscapeString( char* src , char* dest, int sizeofdest);
  13. char *   makeEscapeString1( char* src , char* dest, int sizeofdest);
  14. int getHash ( char* s );
  15. char * chop( char *s );
  16. int hashpjw ( char* s );
  17. // CoolFish: Family 2001/5/30
  18. //void easyGetTokenFromBuf(char *src, char delim, int count, char*output, int len);
  19. int easyGetTokenFromBuf( char* src ,char* delim ,int count, char* output , int len );
  20. #endif /* ifndef _UTIL_H_ */