Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • stdio.h. Standard buffered input/output (fopen(), fread(), etc), operating on FILE objects.
  • dirent.h. Directory accesses (opendir(), readdir(), etc), operating on DIR objects.
  • unistd.h. Miscellaneous functions, including working directory management (chdir(), getcwd()), ftruncate() and rmdir().
  • sys/stat.h. File statistics functions and mkdir().

µC/FS provides a POSIX-compatible like API based on a subset of the functions in these four header files. To avoid conflicts with the user compilation environment, files, functions and objects are renamed:

...