#include <stdio.h>
#include <stdarg.h>
#include <stdint.h>
#include "PLCore/PLCore.h"
Go to the source code of this file.
Defines |
#define | stricmp(a, b) strcasecmp(a, b) |
#define | _stricmp(a, b) strcasecmp(a, b) |
#define | _strnicmp(a, b, n) strncasecmp(a, b, n) |
#define | strnicmp(a, b, n) strncasecmp(a, b, n) |
#define | _strlwr(a) strlwr(a) |
#define | _atoi64(a) atoll(a) |
#define | _snprintf snprintf |
#define | _wcsicmp(a, b) wcscasecmp(a, b) |
#define | _wcsnicmp(a, b, c) wcsncasecmp(a, b, c) |
#define | vswprintf _vsnwprintf |
#define | _fdopen(a, b) fdopen(a, b) |
Functions |
PLCORE_API char * | _strupr (char *s) |
PLCORE_API char * | strlwr (char *s) |
PLCORE_API int | _vscprintf (const char *format, va_list ap) |
PLCORE_API int | _vscwprintf (const wchar_t *fmt, va_list ap) |
PLCORE_API int | _vsnwprintf (wchar_t *buf, size_t cnt, const wchar_t *fmt, va_list args) |
PLCORE_API int | _wtoi (const wchar_t *str) |
PLCORE_API long | _wtol (const wchar_t *str) |
PLCORE_API float | _wtof (const wchar_t *str) |
PLCORE_API wchar_t * | _wcsupr (wchar_t *s) |
PLCORE_API wchar_t * | _wcslwr (wchar_t *s) |
Define Documentation
#define stricmp |
( |
|
a, |
|
|
|
b |
|
) |
| strcasecmp(a, b) |
#define _stricmp |
( |
|
a, |
|
|
|
b |
|
) |
| strcasecmp(a, b) |
#define _strnicmp |
( |
|
a, |
|
|
|
b, |
|
|
|
n |
|
) |
| strncasecmp(a, b, n) |
#define strnicmp |
( |
|
a, |
|
|
|
b, |
|
|
|
n |
|
) |
| strncasecmp(a, b, n) |
#define _wcsicmp |
( |
|
a, |
|
|
|
b |
|
) |
| wcscasecmp(a, b) |
#define _wcsnicmp |
( |
|
a, |
|
|
|
b, |
|
|
|
c |
|
) |
| wcsncasecmp(a, b, c) |
#define _fdopen |
( |
|
a, |
|
|
|
b |
|
) |
| fdopen(a, b) |
Function Documentation
PLCORE_API char* _strupr |
( |
char * |
s | ) |
|
PLCORE_API char* strlwr |
( |
char * |
s | ) |
|
PLCORE_API int _vscprintf |
( |
const char * |
format, |
|
|
va_list |
ap |
|
) |
| |
PLCORE_API int _vscwprintf |
( |
const wchar_t * |
fmt, |
|
|
va_list |
ap |
|
) |
| |
PLCORE_API int _vsnwprintf |
( |
wchar_t * |
buf, |
|
|
size_t |
cnt, |
|
|
const wchar_t * |
fmt, |
|
|
va_list |
args |
|
) |
| |
PLCORE_API int _wtoi |
( |
const wchar_t * |
str | ) |
|
PLCORE_API long _wtol |
( |
const wchar_t * |
str | ) |
|
PLCORE_API float _wtof |
( |
const wchar_t * |
str | ) |
|
PLCORE_API wchar_t* _wcsupr |
( |
wchar_t * |
s | ) |
|
PLCORE_API wchar_t* _wcslwr |
( |
wchar_t * |
s | ) |
|