mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-30 02:30:41 +00:00
8c95516224
- updaterevision for automated revision string generation - re2c as a prerequisite to use sc_man in the future - zipdir to automatically generate an engine resource file.
10 lines
417 B
C
10 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_
|