Matteo Bruni (@Mystral) commented about dlls/d3dcompiler_43/compiler.c:
ID3DInclude_Close(iface, code->code);
}
+static const char *get_line(const char **ptr) +{
- const char *p, *q;
- p = *ptr;
- if (!(q = strstr(p, "\n")))
- {
if (!*p) return NULL;
Nitpick: could you put the return on its own line?