#define LDFLAGS "-lm", "-Llib/"
```
-These will be automatically used in all compilations and linkages performed by the build file they're defined in.
+If you ever want to convert a comma separated list of strings to an array of C strings, the simple `CARRAY` macro does so.
+
+The `CFLAGS` and `LDFLAGS` macros will automatically be used in all compilations and linkages performed by the build file they're defined in.
### Compiling: `cc()`
bp = rindex(pp, '/');
bp = bp ? bp + 1 : pp;
d = bp - pp;
- ep = rindex(pp, '.');
- if (ep < bp) ep = NULL;
+ ep = rindex(bp, '.');
b = ep ? ep - bp : strlen(bp);
ep = ep ? ep + 1 : ext;
l = strncmp(bp, "lib", 3) != 0