Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.01 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.01 KB

romfs-lib

Build and test CodeQL

Simple library for reading the romfs images. Only using static memory allocation. For use in embedded environments.

ToDo

  • get file mode
  • fstatat
  • open
  • close
  • read
  • seek
  • tell
  • read dir
  • map file
  • ReadNodeHdr - check for bad offset, maybe count checksum?
  • Checksum checking
  • Documentation!
  • compile options (max path length, max filename length, etc.)

Changelog

v0.4.2

  • path_utils: change __strtok_r to strtok_r

v0.4.1

  • fix multithreaded execution

v0.4.0

  • added possibility to implement and use own malloc/free
  • added Tell operation

v0.3.0

  • changed interface to support multiple instances