8 lines
138 B
C
8 lines
138 B
C
#ifndef ASTER_INT_H
|
|
#define ASTER_INT_H
|
|
|
|
unsigned long parse_u32(const char *s, int *ok);
|
|
long parse_i32(const char *s, int *ok);
|
|
|
|
#endif
|