mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
11 lines
417 B
C
11 lines
417 B
C
|
#ifndef _RE2C_UTIL_S_TO_N32_UNSAFE_
|
||
|
#define _RE2C_UTIL_S_TO_N32_UNSAFE_
|
||
|
|
||
|
#include "src/util/attribute.h"
|
||
|
#include "src/util/c99_stdint.h"
|
||
|
|
||
|
bool s_to_u32_unsafe (const char * s, const char * s_end, uint32_t & number) RE2C_GXX_ATTRIBUTE ((warn_unused_result));
|
||
|
bool s_to_i32_unsafe (const char * s, const char * s_end, int32_t & number) RE2C_GXX_ATTRIBUTE ((warn_unused_result));
|
||
|
|
||
|
#endif // _RE2C_UTIL_S_TO_N32_UNSAFE_
|