---------------------------------------------------------------------------*/ __u64 */ ---------------------------------------------------------------------------*/
| 85 | /* __u64 */ |
| 86 | /*---------------------------------------------------------------------------*/ |
| 87 | static int tostring_u64(lua_State *L) |
| 88 | { |
| 89 | char temp[64]; |
| 90 | sprintf(temp, "%I64u", *(unsigned long long*)lua_topointer(L, 1)); |
| 91 | lua_pushstring(L, temp); |
| 92 | return 1; |
| 93 | } |
| 94 | |
| 95 | /*---------------------------------------------------------------------------*/ |
| 96 | static int eq_u64(lua_State *L) |
nothing calls this directly
no test coverage detected