#include "oscl_base.h"
Go to the source code of this file.
Defines | |
#define | oscl_isdigit(c) ((c) >= '0' && (c) <= '9') |
Functions | |
OSCL_IMPORT_REF const char * | skip_whitespace (const char *ptr) |
OSCL_IMPORT_REF char * | skip_whitespace (char *ptr) |
OSCL_IMPORT_REF const char * | skip_whitespace (const char *start, const char *end) |
OSCL_IMPORT_REF const char * | skip_to_whitespace (const char *start, const char *end) |
OSCL_IMPORT_REF const char * | skip_to_line_term (const char *start_ptr, const char *end_ptr) |
OSCL_IMPORT_REF const char * | skip_whitespace_and_line_term (const char *start, const char *end) |
OSCL_IMPORT_REF int | extract_string (const char *in_ptr, char *outstring, int maxsize) |
OSCL_IMPORT_REF int | extract_string (const char *start, const char *end, char *outstring, int maxsize) |
OSCL_IMPORT_REF bool | PV_atoi (const char *buf, const char new_format, uint32 &value) |
OSCL_IMPORT_REF bool | PV_atoi (const char *buf, const char new_format, int length, uint32 &value) |
OSCL_IMPORT_REF bool | PV_atoi (const char *buf, const char new_format, int length, uint64 &value) |
OSCL_IMPORT_REF bool | PV_atof (const char *buf, OsclFloat &value) |
OSCL_IMPORT_REF bool | PV_atof (const char *buf, int length, OsclFloat &value) |
OSCL_IMPORT_REF int | oscl_abs (int aVal) |