comparison src/str.c @ 14:2d7c810a1ac2 default tip

*: misc. cleanup
author Paper <paper@paper.us.eu.org>
date Fri, 03 May 2024 22:40:28 -0400
parents 0cc2555db371
children
comparison
equal deleted inserted replaced
13:41b74137e201 14:2d7c810a1ac2
2 2
3 #include <stdlib.h> 3 #include <stdlib.h>
4 #include <string.h> 4 #include <string.h>
5 5
6 /* rudimentary string functions so the code in edl.c isn't 6 /* rudimentary string functions so the code in edl.c isn't
7 * as painful to read 7 * as painful to read */
8 */
9 8
10 int EDL_internal_string_init(EDL_internal_string* str) { 9 int EDL_internal_string_init(EDL_internal_string* str) {
11 if (!str) 10 if (!str)
12 return 0; 11 return 0;
13 12