| 42 | } |
| 43 | |
| 44 | void LShBuiltin_Pwd(int argc, char** argv){ |
| 45 | getcwd(currentDir, PATH_MAX); |
| 46 | printf("%s\n", currentDir); |
| 47 | } |
| 48 | |
| 49 | void LShBuiltin_Export(int argc, char** argv){ |
| 50 | for(int i = 1; i < argc; i++){ |
nothing calls this directly
no outgoing calls
no test coverage detected