C++程序  |  6行  |  69 B

char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}