-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparse.c
154 lines (119 loc) · 2.24 KB
/
parse.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
Duke 2016
Parsing helpers.
*/
#include "string.h"
#ifndef __WIN32__
#if __GNUC__ < 7
#define strnicmp strncasecmp
#endif
#endif
#ifdef __unix__
int strnicmp(char const *a, char const *b, unsigned int lenght)
{
unsigned int idx= 0;
for (;; a++, b++) {
int d = tolower(*a) - tolower(*b);
++idx ;
if (d != 0 || !*a || idx==lenght)
return d;
}
}
#endif
int pathPos(char *filename, int len)
{
int i;
for (i=len; i > 0; i--)
{
if ( (filename[i] =='/') || (filename[i] =='\\') )
{ i++;
break;
}
}
return i;
}
int formatfn(char *sfn, char *filename)
{
int i, n, k, spos;
k = strlen(filename);
// skip any path that may be leading the filename
spos = pathPos(filename, k);
for ( i=spos; i < k; i++ )
{
if ( (filename[i] >= 'a') && (filename[i] <= 'z') )
filename[i] &= 0xDF; // to uppercase
}
//strip spaces
n = 0;
for ( i=spos; i < k; i++ )
{
if ( filename[i] == '.' )
break;
if ( filename[i] != ' ' )
sfn[n++] = filename[i];
if (n == 8)
break;
}
while ( n < 8 )
sfn[n++] = ' '; // pad with spaces
return n;
}
void getExtension(char *ext, char *filename)
{
int i, k, n;
k = strlen(filename);
n = 0;
for (i=k; i > 0; i--)
{
if ( filename[i] == '.' )
{ i++;
while ( i < k )
{ ext[n++] = filename[i++];
if ( n == 3 )
break;
}
break;
}
}
while (n<3)
ext[n++] = ' '; // pad with spaces
}
int findString(char *fstr, char *str, int size)
{
int i,n,k;
n = strlen(fstr);
i = 0;
while ( i<=(size-n) )
{
if ( !strnicmp(&str[i], fstr, n) )
{
i+=n;
return i;
}
i++;
}
return -1;
}
unsigned int atoh(char *string)
{ unsigned int val = 0;
unsigned int d;
char c;
while ( (c = *string++) != 0 )
{
if (c >= '0' && c <= '9')
d = (unsigned int)(c - '0');
else if (c >= 'a' && c <= 'f')
d = (unsigned int)(c - 'a') + 10;
else if (c >= 'A' && c <= 'F')
d = (unsigned int)(c - 'A') + 10;
else if (c == 'x')
;
else if (c == '&')
;
else
break;
if (c != 'x')
val = (val << 4) + d;
}
return val;
}