src
s_to_n32_unsafe.h
Go to the documentation of this file.
1 #ifndef _RE2C_UTIL_S_TO_N32_UNSAFE_
2 #define _RE2C_UTIL_S_TO_N32_UNSAFE_
3 
4 #include "src/util/attribute.h"
5 #include "src/util/c99_stdint.h"
6 
7 bool s_to_u32_unsafe (const char * s, const char * s_end, uint32_t & number) RE2C_GXX_ATTRIBUTE ((warn_unused_result));
8 bool s_to_i32_unsafe (const char * s, const char * s_end, int32_t & number) RE2C_GXX_ATTRIBUTE ((warn_unused_result));
9 
10 #endif // _RE2C_UTIL_S_TO_N32_UNSAFE_
bool s_to_u32_unsafe(const char *s, const char *s_end, uint32_t &number) RE2C_GXX_ATTRIBUTE((warn_unused_result))
#define RE2C_GXX_ATTRIBUTE(x)
Definition: attribute.h:7
bool s_to_i32_unsafe(const char *s, const char *s_end, int32_t &number) RE2C_GXX_ATTRIBUTE((warn_unused_result))