13 lines
184 B
C
13 lines
184 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char * parse_skip(const char * s, char c);
|
|
const char * parse_base10(const char * s, int * n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|