summaryrefslogtreecommitdiff
path: root/mkdir_r.c
Commit message (Collapse)AuthorAgeFilesLines
* Allow user to specify OS-specific file mode flagsXavier Del Campo Romero2023-03-281-2/+2
|
* Add support for Win32Xavier Del Campo Romero2020-10-131-18/+2
|
* Remove unneeded #include <dirent.h>Xavier Del Campo Romero2020-09-281-1/+0
|
* Move away from recursion-based algorithmXavier Del Campo Romero2020-09-231-41/+54
| | | | | | | | | | Previous implementation could not be realiable for embedded applications since it used recursion and allocated a buffer for each folder in the tree. Now, one single allocation is made, duplicating the original string so it can be tokenized. A check which ensures each element from the tree is a directory has also been added. On the other hand, errno is now set when standard functions don't.
* Remove level parameter from mkdir_r APIXavier Del Campo Romero2020-09-171-2/+7
| | | | It has been removed since it is of no use to the end user.
* First commitXavier Del Campo Romero2020-07-261-0/+81