stoneage8.5/石器时代8.5客户端最新源代码/石器源码/systeminc/tool.h

49 lines
1.4 KiB
C
Raw Permalink Normal View History

2020-06-23 15:53:23 +08:00
#ifndef _TOOL_H_
2020-06-23 15:27:59 +08:00
#define _TOOL_H_
#include<stdio.h>
#if 0
2020-06-23 15:53:23 +08:00
//??????????希?????
2020-06-23 15:27:59 +08:00
void freadline( char *ptbuf , FILE *ptFile );
#endif
2020-06-23 15:53:23 +08:00
//??更???????ㄅ??????????
2020-06-23 15:27:59 +08:00
int wordchk( char **pp );
2020-06-23 15:53:23 +08:00
//?更???可?????更???刺????去??
2020-06-23 15:27:59 +08:00
int strstr2( char **pp , char *q );
2020-06-23 15:53:23 +08:00
//??更????????希???????????去
2020-06-23 15:27:59 +08:00
int getword(char **pp , char *q);
2020-06-23 15:53:23 +08:00
//??更????????希???π???刺??
2020-06-23 15:27:59 +08:00
int strint2( char **pp );
2020-06-23 15:53:23 +08:00
//??更????????希??????long??π???刺??
2020-06-23 15:27:59 +08:00
long strlong2( char **pp );
int getStringToken( char *src , char delim , int count , int maxlen , char *out );
int getIntegerToken( char *src , char delim , int count );
double getDoubleToken( char *src , char delim , int count );
void chop( char *src );
void shiftIntArray( int *a , int siz , int count );
int a62toi( char * );
int getInteger62Token( char *, char, int );
void jEncode( char *, int, int, char *, int *, int );
void jDecode( char *, int, int, char *, int * );
int strncmpi( char *s1 , char *s2 , int len );
struct tagRECT intToRect( int left, int top, int right, int bottom );
void insertString( char *buffer, char *string, int whereToInsert );
void insertChar( char *buffer, char character, int whereToInsert );
int isOnlySpaceChars( char *data );
char makeCharFromEscaped( char );
char* makeStringFromEscaped( char* src );
char* makeEscapeString( char* src , char* dest, int sizeofdest);
bool GetMacAddress(char *strMac);
#endif /*_TOOL_H_*/