49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
![]() |
#ifndef _TOOL_H_
|
|||
|
#define _TOOL_H_
|
|||
|
|
|||
|
#include<stdio.h>
|
|||
|
|
|||
|
#if 0
|
|||
|
//??????????<3F><>?<3F><>???
|
|||
|
void freadline( char *ptbuf , FILE *ptFile );
|
|||
|
#endif
|
|||
|
|
|||
|
//??<3F><>???????<3F>t??????????
|
|||
|
int wordchk( char **pp );
|
|||
|
//?<3F><>???<3F>i?????<3F><>???<3F><>????<3F>h??
|
|||
|
int strstr2( char **pp , char *q );
|
|||
|
//??<3F><>????????<3F><>???????????<3F>h
|
|||
|
int getword(char **pp , char *q);
|
|||
|
//??<3F><>????????<3F><>???<3F>k???<3F><>??
|
|||
|
int strint2( char **pp );
|
|||
|
//??<3F><>????????<3F><>??????long??<3F>k???<3F><>??
|
|||
|
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_*/
|