
Functions | |
| int | D4D_StrLen (register const D4D_CHAR *s) |
| The function returns length of string terminated by zero. More... | |
| D4D_CHAR * | D4D_StrCopy (register D4D_CHAR *sd, register const D4D_CHAR *ss) |
| The function copy string one string to other one (terminated by zero) More... | |
| D4D_CHAR * | D4D_StrCopyUnicode2Ascii (register D4D_CHAR *sd, register const D4D_WCHAR *ss) |
| The function copy string one string (UNICODE) to other one (STANDARD 8 bit)(terminated by zero) More... | |
| D4D_WCHAR * | D4D_StrCopyAscii2Unicode (register D4D_WCHAR *sd, register const D4D_CHAR *ss) |
| The function copy string one string (STANDARD 8 bit) to other one (UNICODE)(terminated by zero) More... | |
| D4D_CHAR * | D4D_StrCat (register D4D_CHAR *sd, register const D4D_CHAR *ss) |
| The function concatenate strings (terminated by zero) More... | |
| D4D_WCHAR * | D4D_StrCatUnicode (register D4D_WCHAR *sd, register const D4D_WCHAR *ss) |
| The function concatenate strings (terminated by zero) (UNICODE version) More... | |
| int | D4D_CompareStrings (const D4D_CHAR *s1, const D4D_CHAR *s2) |
| The function copare two strings (terminated by zero) More... | |
| int | D4D_CompareStringsUnicode (const D4D_WCHAR *s1, const D4D_WCHAR *s2) |
| The function copare two strings (terminated by zero) (UNICODE version) More... | |
| void | D4D_ToUpper (D4D_CHAR *s) |
| The function convert all small alpha characters to upper in string(terminated by zero) More... | |
| LWord | D4D_SwapLong (LWord n) |
| The function swap bytes in Long. More... | |
| Word | D4D_SwapWord (Word n) |
| The function swap bytes in Word. More... | |
The function copare two strings (terminated by zero)
| s1 | - first string |
| s2 | - second string |
Definition at line 257 of file d4d_extsrc.c.

The function copare two strings (terminated by zero) (UNICODE version)
| s1 | - first string |
| s2 | - second string |
Definition at line 290 of file d4d_extsrc.c.
The function concatenate strings (terminated by zero)
| sd | - destination string |
| ss | - source string |
Definition at line 211 of file d4d_extsrc.c.
The function concatenate strings (terminated by zero) (UNICODE version)
| sd | - destination string |
| ss | - source string |
Definition at line 236 of file d4d_extsrc.c.
The function copy string one string to other one (terminated by zero)
| sd | - destination string |
| ss | - source string |
Definition at line 154 of file d4d_extsrc.c.

The function copy string one string (STANDARD 8 bit) to other one (UNICODE)(terminated by zero)
| sd | - destination string |
| ss | - source string |
Definition at line 193 of file d4d_extsrc.c.
The function copy string one string (UNICODE) to other one (STANDARD 8 bit)(terminated by zero)
| sd | - destination string |
| ss | - source string |
Definition at line 176 of file d4d_extsrc.c.
| int D4D_StrLen | ( | register const D4D_CHAR * | s | ) |
The function returns length of string terminated by zero.
| s | - input string |
Definition at line 128 of file d4d_extsrc.c.

The function swap bytes in Long.
| n | - input long number |
Definition at line 335 of file d4d_extsrc.c.
The function swap bytes in Word.
| n | - input word number |
Definition at line 352 of file d4d_extsrc.c.

| void D4D_ToUpper | ( | D4D_CHAR * | s | ) |
The function convert all small alpha characters to upper in string(terminated by zero)
| s | - input string |
Definition at line 318 of file d4d_extsrc.c.
