1 2 3 4 5 6 7 8 9 10 11
#include "../lib/sys/getcwd.h" #include "../lib/io/io.h" char buf[1024] = { 0 }; int main() { getcwd(buf, 1024); wstdf("%s\n", buf); return 0; }