| 53 | } |
| 54 | |
| 55 | void LShBuiltin_Clear(int argc, char** argv){ |
| 56 | printf("\033c"); |
| 57 | } |
| 58 | |
| 59 | builtin_t builtinCd = {.name = "cd", .func = LShBuiltin_Cd}; |
| 60 | builtin_t builtinPwd = {.name = "pwd", .func = LShBuiltin_Pwd}; |
nothing calls this directly
no outgoing calls
no test coverage detected