comparison src/dirtools.c @ 7:be4835547dd0

clean up code, convert git files to hg, etc.
author Paper
date Fri, 16 Dec 2022 20:35:06 -0500
parents 59bf702b2b21
children 42ac054c0231
comparison
equal deleted inserted replaced
6:8ce85aee15c0 7:be4835547dd0
1 /**
2 * dirtools.c:
3 *
4 * Useful tools for manipulating directory names,
5 * or pretty much anything involving directories.
6 **/
1 #include <stdio.h> 7 #include <stdio.h>
2 #include <stdlib.h> 8 #include <stdlib.h>
3 #include <string.h> 9 #include <string.h>
4 #ifndef WIN32_LEAN_AND_MEAN 10 #ifndef WIN32_LEAN_AND_MEAN
5 # define WIN32_LEAN_AND_MEAN 11 # define WIN32_LEAN_AND_MEAN
6 #endif 12 #endif
7 #include <windows.h> 13 #include <windows.h>
8 #include "dirtools.h" 14 #include "dirtools.h"
9 15
10 int dirtools_directory_exists(char* path) { 16 int dirtools_directory_exists(char* path) {