Defines | |
| #define | strcmpi strcasecmp |
Functions | |
| int | getCharInString (const char *, const char *, int max) |
| int | getEndLine (string const &str, int max) |
| int | getEndLine (const char *str, int max) |
| const char * | getGMTLogFormatDate (string &out, int len) |
| const char * | getGMTLogFormatDate (const time_t t, string &out, int len) |
| const char * | getGMTLogFormatDate (char *out, int len) |
| const char * | getGMTLogFormatDate (const time_t t, char *out, int len) |
| const char * | getLocalLogFormatDate (string &out, int len) |
| const char * | getLocalLogFormatDate (const time_t t, string &out, int len) |
| const char * | getLocalLogFormatDate (char *out, int len) |
| const char * | getLocalLogFormatDate (const time_t t, char *out, int len) |
| const char * | getRFC822GMTTime (const time_t, string &out, int len) |
| const char * | getRFC822GMTTime (string &out, int len) |
| const char * | getRFC822GMTTime (const time_t, char *out, int len) |
| const char * | getRFC822GMTTime (char *out, int len) |
| const char * | getRFC822LocalTime (const time_t, string &out, int len) |
| const char * | getRFC822LocalTime (string &out, int len) |
| const char * | getRFC822LocalTime (const time_t, char *out, int len) |
| const char * | getRFC822LocalTime (char *out, int len) |
| time_t | getTime (string const &str) |
| time_t | getTime (const char *str) |
| void | gotoNextLine (char **cmd) |
| time_t | hexToInt (string const &str) |
| int | hexToInt (const char *str) |
| int | hexVal (char c) |
| int | stringcmp (string const &a, const char *b) |
| int | stringcmp (string const &a, string const &b) |
| int | stringcmpi (string const &a, const char *b) |
| int | stringcmpi (string const &a, string const &b) |
| void | StrTrim (char *str, char *trimChars) |
| char * | strupr (char *string) |
| void | translateEscapeString (string &TargetStr) |
| void | translateEscapeString (char *TargetStr) |
| string | trim (string const &s, string const &t=" ") |
| string | trimLeft (string const &s, string const &t=" ") |
| string | trimRight (string const &s, string const &t=" ") |
|
|
|
|
||||||||||||||||
|
Get the offset from string start of a character. |
|
||||||||||||
|
|
|
||||||||||||
|
Get the offset from string start of the first or |
|
||||||||||||
|
Get the GMT time string. |
|
||||||||||||||||
|
Get the GMT time string. |
|
||||||||||||
|
Get the GMT time string. |
|
||||||||||||||||
|
Get a string in the format "day/month/year:hour:minute:second offset" for the GMT zone. |
|
||||||||||||
|
Get the local time string. |
|
||||||||||||||||
|
Get the local time string. |
|
||||||||||||
|
Get the local time string. |
|
||||||||||||||||
|
Get a string in the format "day/month/year:hour:minute:second offset" for the local zone. |
|
||||||||||||||||
|
|
|
||||||||||||
|
This function format current time to the RFC 822 format and output it to a string. |
|
||||||||||||||||
|
|
|
||||||||||||
|
This function format current time to the RFC 822 format. |
|
||||||||||||||||
|
|
|
||||||||||||
|
This function format current time to the RFC 822 format and output it to a string. |
|
||||||||||||||||
|
|
|
||||||||||||
|
This function format current time to the RFC 822 format. |
|
|
|
|
|
This function convert from a RFC 822 format to a time_t. |
|
|
Set the buffer passed to the next line. A new line is the first character after |
|
|
|
|
|
Convert from an hex string to an int |
|
|
This function converts a hexadecimal number to a decimal number. |
|
||||||||||||
|
Compares two strings and returns a value indicating their relationship. This function values the strings case too. Returns = 0 if [A] is identical to [B]. Returns < 0 if [A] is less than [B]. Returns > 0 if [A] is greater than [B]. |
|
||||||||||||
|
Compares two strings and returns a value indicating their relationship. This function values the strings case too. Returns = 0 if [A] is identical to [B]. Returns < 0 if [A] is less than [B]. Returns > 0 if [A] is greater than [B]. |
|
||||||||||||
|
Compares two strings and returns a value indicating their relationship. This function ignores case. Returns = 0 if [A] is identical to [B]. Returns < 0 if [A] is less than [B]. Returns > 0 if [A] is greater than [B]. |
|
||||||||||||
|
Compares two strings and returns a value indicating their relationship. This function ignores case. Returns = 0 if [A] is identical to [B]. Returns < 0 if [A] is less than [B]. Returns > 0 if [A] is greater than [B]. |
|
||||||||||||
|
This funtions takes two strings, first the str we're going to work on, and second a list of characters that the funtion is going to remove from the head and tail of the first string. Ex: char str[16]="Hellow World!!!"; char trim[7]="e!HlwW"; StrTrim(str,trim); result: str="ow World" 'w', 'W' and the last 'l' aren't removed because they aren't attached to the head or tail of the string |
|
|
|
|
|
Translates HTTP escape sequences. |
|
|
Translates HTTP escape sequences. |
|
||||||||||||
|
Trim a string. |
|
||||||||||||
|
Trim a string from the left side. |
|
||||||||||||
|
Trim a string from the right side. |
1.3.9.1