| 226 | ** Set all fields from structure 'tm' in the table on top of the stack |
| 227 | */ |
| 228 | static void setallfields (lua_State *L, struct tm *stm) { |
| 229 | setfield(L, "year", stm->tm_year, 1900); |
| 230 | setfield(L, "month", stm->tm_mon, 1); |
| 231 | setfield(L, "day", stm->tm_mday, 0); |
no outgoing calls
no test coverage detected