TakefiveInteractive / TedkOS

Operating System - ECE 391 Takefive Interactive Team
GNU General Public License v2.0
96 stars 17 forks source link

Implement stat #22

Open tengyifei opened 8 years ago

tengyifei commented 8 years ago

Status of a file (by name). Minimal implementation:

int stat(char *file, struct stat *st) {
  st->st_mode = S_IFCHR;
  return 0;
}