fileinfo.h 188 B

12345678
  1. struct fileInfo
  2. {
  3. char *fullname, *name, *ext;
  4. char *_base; // this is just for slicing
  5. };
  6. struct fileInfo* newFileInfo(const char *filePath);
  7. void freeFileInfo(struct fileInfo *info);