---------------------------------------------------------------------------*/
| 108 | |
| 109 | /*---------------------------------------------------------------------------*/ |
| 110 | static int le_u64(lua_State *L) |
| 111 | { |
| 112 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(unsigned long long)) <= 0); |
| 113 | return 1; |
| 114 | } |
| 115 | |
| 116 | /*---------------------------------------------------------------------------*/ |
| 117 | void lua_tinker::init_u64(lua_State *L) |
nothing calls this directly
no test coverage detected