asar coverage - build #79


src/asar/
File: src/asar/libstr.cpp
Date: 2024-01-18 12:22:57
Lines:
201/219
91.8%
Functions:
16/17
94.1%
Branches:
166/212
78.3%

Line Branch Exec Source
1 #include "asar.h"
2 #include "virtualfile.h"
3 #include "unicode.h"
4
5 #include "platform/file-helpers.h"
6
7 #define typed_malloc(type, count) (type*)malloc(sizeof(type)*(count))
8 #define typed_realloc(type, ptr, count) (type*)realloc(ptr, sizeof(type)*(count))
9
10
11 // Detects if str starts with a UTF-8 byte order mark.
12 // If so, throws a warning, then returns the number of bytes we should skip ahead in the string.
13 744 size_t check_bom(const char* str)
14 {
15 // RPG Hacker: We could also check for BoMs of incompatible encodings here (like UTF-16)
16 // and throw errors, but not sure if that's worth adding. Asar never supported any wide
17 // encodings to begin with, so it's unreasonable to assume that any UTF-16 patches currently
18 // exist for it. As for future patches, those should be caught by the "must be UTF-8" checks
19 // I have already implemented further below.
20 // I think UTF-8 + BoM is the only case that could lead to confusion if we didn't handle it,
21 // so that's why I have added this.
22
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 742 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
744 if (str[0u] == '\xEF' && str[1u] == '\xBB' && str[2u] == '\xBF')
23 {
24 2 asar_throw_warning(0, warning_id_byte_order_mark_utf8);
25 2 return 3u;
26 }
27
28 return 0u;
29 }
30
31
32 280 char * readfile(const char * fname, const char * basepath)
33 {
34 280 virtual_file_handle myfile = filesystem->open_file(fname, basepath);
35
2/2
✓ Branch 0 taken 274 times.
✓ Branch 1 taken 6 times.
280 if (myfile == INVALID_VIRTUAL_FILE_HANDLE) return nullptr;
36 274 size_t datalen = filesystem->get_file_size(myfile);
37 274 char * data= typed_malloc(char, datalen+1);
38 274 data[filesystem->read_file(myfile, data, 0u, datalen)] = 0;
39 274 filesystem->close_file(myfile);
40
41
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 272 times.
274 if (!is_valid_utf8(data))
42 {
43 2 free(data);
44 2 asar_throw_error(0, error_type_block, error_id_invalid_utf8);
45 }
46
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 270 times.
272 if(check_bom(data)){
47 2 data[0] = ' ';
48 2 data[1] = ' ';
49 2 data[2] = ' ';
50 }
51 return data;
52 }
53
54 // RPG Hacker: like readfile(), but doesn't use virtual file system
55 // and instead read our file directly.
56 472 char * readfilenative(const char * fname)
57 {
58 472 FileHandleType myfile = open_file(fname, FileOpenMode_Read);
59
1/2
✓ Branch 0 taken 472 times.
✗ Branch 1 not taken.
472 if (myfile == InvalidFileHandle) return nullptr;
60 472 size_t datalen = (size_t)get_file_size(myfile);
61 472 char * data = typed_malloc(char, datalen + 1);
62 472 data[read_file(myfile, data, datalen)] = 0;
63 472 close_file(myfile);
64
65
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 472 times.
472 if (!is_valid_utf8(data)) asar_throw_error(0, error_type_block, error_id_invalid_utf8);
66
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 472 times.
472 if(check_bom(data)){
67 data[0] = ' ';
68 data[1] = ' ';
69 data[2] = ' ';
70 }
71 return data;
72 }
73
74 246 bool readfile(const char * fname, const char * basepath, char ** data, int * len)
75 {
76 246 virtual_file_handle myfile = filesystem->open_file(fname, basepath);
77
2/2
✓ Branch 0 taken 234 times.
✓ Branch 1 taken 12 times.
246 if (!myfile) return false;
78 234 size_t datalen = filesystem->get_file_size(myfile);
79 234 *data= typed_malloc(char, datalen);
80 234 *len = (int)filesystem->read_file(myfile, *data, 0, datalen);
81 234 filesystem->close_file(myfile);
82 234 return true;
83 }
84
85 #define isq(n) (((0x2227 ^ (0x0101 * (n))) - 0x0101UL) & ~(0x2227 ^ (0x0101 * (n))) & 0x8080UL)
86 #define isqp(n) (((0x22272829 ^ (0x01010101 * (n))) - 0x01010101UL) & ~(0x22272829 ^ (0x01010101 * (n))) & 0x80808080UL)
87
88 // RPG Hacker: Only index this with ASCII characters.
89 // Anything else doesn't make sense, anyways.
90 const bool qparlut[128] = {
91 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
92 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
93 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0,
94 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
95 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
96 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
97 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
98 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99 };
100
101 //this will leave the last char found as the one pointed at
102 80596 inline bool skip_quote(char *&str)
103 {
104
105
2/2
✓ Branch 0 taken 8056 times.
✓ Branch 1 taken 72540 times.
80596 if(*str == '"') str = strchr(str + 1, '"');
106
2/2
✓ Branch 0 taken 834 times.
✓ Branch 1 taken 71706 times.
72540 else if(*str == '\'')
107 {
108 int codepoint;
109 834 str += utf8_val(&codepoint, str + 1) + 1;
110
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 834 times.
834 if(*str != '\'') return false;
111 }
112 80596 return str;
113 }
114
115 //eat 1 char or quote/par
116 11280 inline bool skip_par(char *&str)
117 {
118 int par = 0;
119
5/6
✓ Branch 0 taken 11094 times.
✓ Branch 1 taken 186 times.
✓ Branch 2 taken 9054 times.
✓ Branch 3 taken 2040 times.
✓ Branch 4 taken 9054 times.
✗ Branch 5 not taken.
11280 if(*str != '\'' && *str != '"' && *str != '(' && *str != ')')
120 {
121 9054 str++;
122 9054 return true;
123 }
124 while(true)
125 {
126 13482 char *t = str;
127
2/2
✓ Branch 0 taken 342 times.
✓ Branch 1 taken 13140 times.
13482 if(*str == '"') t = strchr(t + 1, '"');
128
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13140 times.
13140 else if(*str == '\'')
129 {
130 int codepoint;
131 t += utf8_val(&codepoint, t + 1) + 1;
132 if(*t != '\'') return false;
133 }
134
2/2
✓ Branch 0 taken 2040 times.
✓ Branch 1 taken 11100 times.
13140 else if(*t == '(')
135 {
136 2040 par++;
137 }
138
2/2
✓ Branch 0 taken 2040 times.
✓ Branch 1 taken 9060 times.
11100 else if(*t == ')')
139 {
140 2040 par--;
141
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2040 times.
2040 if(par < 0) return false;
142 }
143
144 13482 str = t + 1;
145
4/4
✓ Branch 0 taken 11898 times.
✓ Branch 1 taken 1584 times.
✓ Branch 2 taken 11256 times.
✓ Branch 3 taken 642 times.
13482 if(!*str || !par) return par == 0 ? true : false;
146 }
147 }
148
149 //instr should not be duplicate chars. Instr should also not be 1 char
150
2/2
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 48322 times.
48352 string& string::qreplace(const char * instr, const char * outstr)
151 {
152 string& thisstring =*this;
153
2/2
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 48322 times.
48352 if (!strstr(thisstring, instr)) return thisstring;
154 30 int inlen = strlen(instr);
155 15 string out;
156
2/2
✓ Branch 0 taken 462 times.
✓ Branch 1 taken 30 times.
492 for (int i=0;thisstring[i];)
157 {
158
2/2
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 432 times.
462 if (!strncmp((const char*)thisstring +i, instr, inlen))
159 {
160 30 out+=outstr;
161 30 i+=inlen;
162 }
163 // randomdude999: prevent appending the null terminator to the output
164
1/2
✓ Branch 0 taken 432 times.
✗ Branch 1 not taken.
432 else if(!isq(thisstring[i])) out+= thisstring[i++];
165 else
166 {
167 char *start = raw() + i;
168 char *end = start;
169 if(!skip_quote(end)) return thisstring;
170 out.append(raw(), i, end - start + i + 1);
171 i += end - start + 1;
172
173 }
174 }
175 thisstring =out;
176 30 return thisstring;
177 30 }
178
179 51884 string& string::qnormalize()
180 {
181 string& thisstring =*this;
182 23692 string out;
183 char *startstr = thisstring.raw();
184 char *str = startstr;
185
2/2
✓ Branch 0 taken 59148 times.
✓ Branch 1 taken 51848 times.
110996 while(str = strpbrk(str, "'\" \t,\r"))
186 {
187
2/2
✓ Branch 0 taken 44294 times.
✓ Branch 1 taken 14854 times.
59148 if(is_space(*str))
188 {
189
4/4
✓ Branch 0 taken 44282 times.
✓ Branch 1 taken 12 times.
✓ Branch 2 taken 44234 times.
✓ Branch 3 taken 48 times.
44294 if(str[0] == ' ' && !is_space(str[1]))
190 {
191 44234 str++;
192 44234 continue;
193 }
194 60 out.append(startstr, 0, str - startstr);
195 60 out += ' ';
196
2/2
✓ Branch 0 taken 192 times.
✓ Branch 1 taken 60 times.
252 while(is_space(*str)) str++;
197 startstr = str;
198
2/2
✓ Branch 0 taken 6106 times.
✓ Branch 1 taken 8748 times.
14854 }else if(*str == ',')
199 {
200 6106 str++;
201
2/2
✓ Branch 0 taken 1716 times.
✓ Branch 1 taken 4390 times.
6106 if(is_space(*str))
202 {
203 1716 out.append(startstr, 0, str - startstr);
204
2/2
✓ Branch 0 taken 1746 times.
✓ Branch 1 taken 1716 times.
3462 while(is_space(*str)) str++;
205 startstr = str;
206 }
207 }
208 else
209 {
210
2/2
✓ Branch 0 taken 2106 times.
✓ Branch 1 taken 18 times.
8748 str = strchr(str + 1, *str); //confirm quotes has already been run, so this should be okay
211
2/2
✓ Branch 0 taken 8712 times.
✓ Branch 1 taken 36 times.
8748 if(!str) return thisstring;
212 8712 str++;
213 }
214 }
215
2/2
✓ Branch 0 taken 1398 times.
✓ Branch 1 taken 50450 times.
51848 if(startstr != thisstring.raw())
216 {
217 1398 out.append(startstr, 0, strlen(startstr)); //the remaining
218
219 thisstring = out;
220 }
221 return thisstring;
222 51884 }
223
224 21318 bool confirmquotes(const char * str)
225 {
226
2/2
✓ Branch 0 taken 15180 times.
✓ Branch 1 taken 7150 times.
22330 while(*str)
227 {
228 7590 char *dquote = strchr((char *)str, '"');
229 7590 char *squote = strchr((char *)str, '\'');
230
2/2
✓ Branch 0 taken 1022 times.
✓ Branch 1 taken 14158 times.
15180 if(dquote || squote)
231 {
232
4/4
✓ Branch 0 taken 822 times.
✓ Branch 1 taken 200 times.
✓ Branch 2 taken 820 times.
✓ Branch 3 taken 2 times.
1022 if(dquote && (dquote < squote || !squote))
233 {
234
2/2
✓ Branch 0 taken 406 times.
✓ Branch 1 taken 4 times.
820 dquote = strchr(dquote+1, '"');
235
2/2
✓ Branch 0 taken 406 times.
✓ Branch 1 taken 4 times.
816 if(dquote) str = dquote+1;
236 else return false;
237 }
238 else
239 {
240 int codepoint;
241 202 squote += utf8_val(&codepoint, squote + 1) + 1;
242
2/2
✓ Branch 0 taken 200 times.
✓ Branch 1 taken 2 times.
202 if(*squote == '\'') str = squote+1;
243 2 else return false;
244 }
245 }
246 else
247 {
248 return true;
249 }
250 }
251 return true;
252 }
253
254 734 bool confirmqpar(const char * str)
255 {
256 //todo fully optimize
257 int par = 0;
258
3/4
✗ Branch 0 not taken.
✓ Branch 1 taken 9806 times.
✓ Branch 2 taken 9072 times.
✓ Branch 3 taken 734 times.
9806 while((unsigned char)*str >= 128 || !qparlut[*str]) str++;
259
2/2
✓ Branch 0 taken 1798 times.
✓ Branch 1 taken 734 times.
2532 while(*str)
260 {
261
2/2
✓ Branch 0 taken 366 times.
✓ Branch 1 taken 1432 times.
1798 if(*str == '"')
262 {
263
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 183 times.
366 str = strchr(str + 1, '"');
264
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 366 times.
366 if(!str++) return false;
265 }
266
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 1408 times.
1432 else if(*str == '\'')
267 {
268 int codepoint;
269 24 str += utf8_val(&codepoint, str + 1) + 1;
270
1/2
✓ Branch 0 taken 24 times.
✗ Branch 1 not taken.
24 if(*str == '\'') str++;
271 else return false;
272 }
273 else
274 {
275 1408 par += 1 - ((*str++ - '(') << 1);
276
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1408 times.
1408 if(par < 0) return false;
277 }
278
3/4
✗ Branch 0 not taken.
✓ Branch 1 taken 4550 times.
✓ Branch 2 taken 2752 times.
✓ Branch 3 taken 1798 times.
4550 while((unsigned char)*str >= 128 || !qparlut[*str]) str++;
279 }
280 734 return !par;
281 }
282
283 53184 char ** split(char * str, char key, int * len)
284 {
285
2/2
✓ Branch 0 taken 14326 times.
✓ Branch 1 taken 12266 times.
53184 char *thisentry=strchr(str, key);
286
2/2
✓ Branch 0 taken 28652 times.
✓ Branch 1 taken 24532 times.
53184 if (!thisentry)
287 {
288 28652 char ** out= typed_malloc(char*, 2);
289 28652 out[0]=str;
290 28652 out[1]=nullptr;
291
2/2
✓ Branch 0 taken 25604 times.
✓ Branch 1 taken 3048 times.
28652 if (len) *len=1;
292 28652 return out;
293 }
294 int count=15; //makes the default alloc 8 elements, sounds fair.
295 24532 char ** outdata= typed_malloc(char*, (size_t)count+1);
296
297 int newcount=0;
298 24532 outdata[newcount++]=str;
299 do{
300 41914 *thisentry = 0;
301 41914 thisentry++;
302 41914 outdata[newcount++]=thisentry;
303
2/2
✓ Branch 0 taken 270 times.
✓ Branch 1 taken 41644 times.
41914 if(newcount >= count)
304 {
305 270 count *= 2;
306 270 outdata = typed_realloc(char *, outdata, count);
307 }
308
2/2
✓ Branch 0 taken 17382 times.
✓ Branch 1 taken 24532 times.
41914 }while((thisentry = strchr(thisentry, key)));
309
310 24532 outdata[newcount]= nullptr;
311
2/2
✓ Branch 0 taken 22358 times.
✓ Branch 1 taken 2174 times.
24532 if (len) *len=newcount;
312 return outdata;
313 }
314
315
2/2
✓ Branch 0 taken 25953 times.
✓ Branch 1 taken 1496 times.
59398 char ** qsplit(char * str, char key, int * len)
316 {
317
4/4
✓ Branch 0 taken 51906 times.
✓ Branch 1 taken 7492 times.
✓ Branch 2 taken 51282 times.
✓ Branch 3 taken 624 times.
59398 if (!strchr(str, '"') && !strchr(str, '\'')) return split(str, key, len);
318
319 int count=15;
320 8116 char ** outdata= typed_malloc(char*, (size_t)count+1);
321 int newcount=0;
322 8116 char * thisentry=str;
323 8116 outdata[newcount++]=thisentry;
324
2/2
✓ Branch 0 taken 69578 times.
✓ Branch 1 taken 8116 times.
77694 while (*thisentry) /*todo fix*/
325 {
326
2/2
✓ Branch 0 taken 8380 times.
✓ Branch 1 taken 61198 times.
69578 if (*thisentry == key)
327 {
328 8380 *thisentry=0;
329 8380 thisentry++;
330 8380 outdata[newcount++]=thisentry;
331
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8380 times.
8380 if(newcount >= count)
332 {
333 count *= 2;
334 outdata = typed_realloc(char *, outdata, count);
335 }
336 }
337
1/2
✓ Branch 0 taken 61198 times.
✗ Branch 1 not taken.
61198 else if(skip_quote(thisentry)) thisentry++;
338 else return nullptr;
339 }
340 8116 outdata[newcount]= nullptr;
341
2/2
✓ Branch 0 taken 7636 times.
✓ Branch 1 taken 480 times.
8116 if (len) *len=newcount;
342 return outdata;
343 }
344
345
2/2
✓ Branch 0 taken 21728 times.
✓ Branch 1 taken 198 times.
48352 char ** qsplitstr(char * str, const char * key, int * len)
346 {
347 //check if the str is found first
348
2/2
✓ Branch 0 taken 47956 times.
✓ Branch 1 taken 396 times.
48352 if (!strstr(str, key))
349 {
350 47956 char ** out= typed_malloc(char*, 2);
351 47956 out[0]=str;
352 47956 out[1]=nullptr;
353
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 47956 times.
47956 if (len) *len=1;
354 47956 return out;
355 }
356
357 396 int keylen=(int)strlen(key);
358 int count=15;
359 396 char ** outdata= typed_malloc(char*, (size_t)count+1);
360 int newcount=0;
361 396 char * thisentry=str;
362 396 outdata[newcount++]=thisentry;
363
2/2
✓ Branch 0 taken 21126 times.
✓ Branch 1 taken 396 times.
21522 while (*thisentry) /*todo fix*/
364 {
365
2/2
✓ Branch 0 taken 1728 times.
✓ Branch 1 taken 19398 times.
21126 if (!strncmp(thisentry, key, (size_t)keylen))
366 {
367 1728 *thisentry=0;
368 1728 thisentry+=keylen;
369 1728 outdata[newcount++]=thisentry;
370
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1728 times.
1728 if(newcount >= count)
371 {
372 count *= 2;
373 outdata = typed_realloc(char *, outdata, count);
374 }
375 }
376
1/2
✓ Branch 0 taken 19398 times.
✗ Branch 1 not taken.
19398 else if(skip_quote(thisentry)) thisentry++;
377 else return nullptr;
378 }
379 396 outdata[newcount]= nullptr;
380
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 396 times.
396 if (len) *len=newcount;
381 return outdata;
382 }
383
384 //this function is most commonly called in cases where additional chars are very likely
385
2/2
✓ Branch 0 taken 4659 times.
✓ Branch 1 taken 963 times.
11244 char ** qpsplit(char * str, char key, int * len)
386 {
387
3/4
✓ Branch 0 taken 9318 times.
✓ Branch 1 taken 1926 times.
✓ Branch 2 taken 9318 times.
✗ Branch 3 not taken.
11244 if (!strchr(str, '(') && !strchr(str, ')')) return qsplit(str, key, len);
388 int count=7;
389 1926 char ** outdata= typed_malloc(char*, (size_t)count+1);
390
391 int newcount=0;
392 1926 char * thisentry=str;
393 1926 outdata[newcount++]=thisentry;
394
2/2
✓ Branch 0 taken 11694 times.
✓ Branch 1 taken 1926 times.
13620 while (*thisentry)
395 {
396 //skippar(*thisentry, thisentry++, return nullptr;)
397
2/2
✓ Branch 0 taken 894 times.
✓ Branch 1 taken 10800 times.
11694 if (*thisentry == key)
398 {
399 894 *thisentry=0;
400 894 thisentry++;
401 894 outdata[newcount++]=thisentry;
402
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 882 times.
894 if(newcount >= count)
403 {
404 12 count *= 2;
405 12 outdata = typed_realloc(char *, outdata, count);
406 }
407 }
408
1/2
✓ Branch 0 taken 10800 times.
✗ Branch 1 not taken.
10800 else if(!skip_par(thisentry)) return nullptr;
409 }
410 1926 outdata[newcount]= nullptr;
411
2/2
✓ Branch 0 taken 906 times.
✓ Branch 1 taken 1020 times.
1926 if (len) *len=newcount;
412 return outdata;
413 }
414
415
1/2
✓ Branch 0 taken 840 times.
✗ Branch 1 not taken.
840 string &itrim(string &input, const char * left, const char * right)
416 {
417 bool nukeright=true;
418 int totallen=input.length();
419 840 int rightlen=(int)strlen(right);
420
1/2
✓ Branch 0 taken 840 times.
✗ Branch 1 not taken.
840 if (rightlen && rightlen<=totallen)
421 {
422 840 const char * rightend=right+rightlen;
423 840 const char * strend=input.data()+totallen;
424
2/2
✓ Branch 0 taken 1980 times.
✓ Branch 1 taken 840 times.
2820 while (right!=rightend)
425 {
426 1980 rightend--;
427 1980 strend--;
428
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1980 times.
1980 if (to_lower(*strend)!=to_lower(*rightend)) nukeright=false;
429 }
430
1/2
✓ Branch 0 taken 840 times.
✗ Branch 1 not taken.
840 if (nukeright)
431 {
432 840 totallen-=rightlen;
433 input.truncate(totallen);
434 }
435 }
436 bool nukeleft=true;
437 840 int leftlen = strlen(left);
438
3/4
✓ Branch 0 taken 204 times.
✓ Branch 1 taken 636 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 204 times.
840 if(leftlen == 1 && input.data()[0] == left[0])
439 {
440 204 return input = string(input.data()+1, (input.length()-1));
441 }
442 else
443 {
444
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 636 times.
636 for (int i = 0; i < leftlen; i++)
445 {
446 if (to_lower(input.data()[i])!=to_lower(left[i])) nukeleft=false;
447 }
448
1/2
✓ Branch 0 taken 636 times.
✗ Branch 1 not taken.
1272 if (nukeleft) input = string(input.data()+leftlen, (input.length()-leftlen));
449 }
450 return input;
451 }
452
453 char* strqpchr(char* str, char key)
454 {
455 while (*str)
456 {
457 if (*str == key) return str;
458 else if(!skip_par(str)) return nullptr;
459 }
460 return nullptr;
461 }
462
463 126 char* strqpstr(char* str, const char* key)
464 {
465 126 size_t keylen = strlen(key);
466
2/2
✓ Branch 0 taken 600 times.
✓ Branch 1 taken 6 times.
606 while (*str)
467 {
468
2/2
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 480 times.
600 if (!strncmp(str, key, keylen)) return str;
469
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 480 times.
480 else if(!skip_par(str)) return nullptr;
470 }
471 return nullptr;
472 }
473
474 extern const uint8_t char_props[256] = {
475 //x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF
476 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x80,0x00,0x00, // 0x
477 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 1x
478 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 2x !"#$%&'()*+,-./
479 0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x00,0x00,0x00,0x00,0x00,0x00, // 3x 0123456789:;<=>?
480 0x00,0x23,0x23,0x23,0x23,0x23,0x23,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22, // 4x @ABCDEFGHIJKLMNO
481 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x08, // 5x PQRSTUVWXYZ[\]^_
482 0x00,0x25,0x25,0x25,0x25,0x25,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24, // 6x `abcdefghijklmno
483 0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00, // 7x pqrstuvwxyz{|}~
484 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 8x
485 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 9x
486 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Ax
487 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Bx
488 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Cx
489 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Dx
490 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Ex
491 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // Fx
492 };
493