---------------------------------------------------------------------------*/
| 101 | |
| 102 | /*---------------------------------------------------------------------------*/ |
| 103 | static int lt_u64(lua_State *L) |
| 104 | { |
| 105 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(unsigned long long)) < 0); |
| 106 | return 1; |
| 107 | } |
| 108 | |
| 109 | /*---------------------------------------------------------------------------*/ |
| 110 | static int le_u64(lua_State *L) |
nothing calls this directly
no test coverage detected