ReactOS 0.4.16-dev-338-g34e76ad
|
#include <schily/mconfig.h>
#include <schily/standard.h>
#include <schily/utypes.h>
#include <schily/schily.h>
#include <schily/errno.h>
Go to the source code of this file.
Macros | |
#define | is_space(c) ((c) == ' ' || (c) == '\t') |
#define | is_digit(c) ((c) >= '0' && (c) <= '9') |
#define | is_hex(c) |
#define | is_lower(c) ((c) >= 'a' && (c) <= 'z') |
#define | is_upper(c) ((c) >= 'A' && (c) <= 'Z') |
#define | to_lower(c) (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A'+'a' : (c)) |
#define | BASE_MAX ('z' - 'a' + 10 + 1) /* This is ASCII */ |
Functions | |
char * | astoll (const char *s, Llong *l) |
char * | astollb (const char *s, Llong *l, int base) |
Definition at line 64 of file astoll.c.
Referenced by astoll().