-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhfct.h
31 lines (23 loc) · 836 Bytes
/
hfct.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef HFCT_H
#define HFCT_H
#ifdef __cplusplus
extern "C" {
#endif
/*---------------------------------------------------------------------------------*/
void ipaddr2str(char* buffer,unsigned int ipaddr);
unsigned int ipstr2long(char* ip_str);
void milisec(char* datumstr);
void sec(char* datumstr);
void Mid(char *d, char *s, int n);
char* Replace(char* QuellString,char* SuchString,char* ErsetzString);
int IsOfForm(char* String, char* FormString);
char* FillZeroFloat(char* Buffer,double Number, int Length);
char* FillZeroInt(char* Buffer,int Number, int Length);
struct tm StringToDate(char* DateString);
struct tm StringToTime(char* TimeString);
struct tm StringToTimestamp(char* TimeStampString);
#ifdef __cplusplus
}
#endif
/*---------------------------------------------------------------------------------*/
#endif