6 lines
74 B
C
6 lines
74 B
C
#include <unistd.h>
|
|
|
|
char *getwd(char *buf) {
|
|
return getcwd(buf, 256);
|
|
}
|