char *pos, *argtext, *argpos, *argbuf;
char quoting;
- /* Used to track quoting state; if \0, we're not
- * inside quotes. Otherwise stores the quoting character
- * that started it, for matching the end quote */
+ /* Used to track quoting state; if \0, we are not inside quotes. Otherwise
+ * stores the quoting character that started it, for matching the end
+ * quote */
quoting = '\0';
if (!(argtext = read_text_file(filename, 0)))
end = data + size;
p = data;
q = data;
- while (q < end - 7) { /* There must be at least 7 characters (# 1 "x") left
- to potentially find an include file path. */
+ /* There must be at least 7 characters (# 1 "x") left to potentially find an
+ * include file path. */
+ while (q < end - 7) {
/*
* Check if we look at a line containing the file name of an included file.
* At least the following formats exist (where N is a positive integer):
continue;
}
- /* debugging is handled specially, so that we know if we
- can strip line number info
- */
+ /* Debugging is handled specially, so that we know if we can strip line
+ * number info. */
if (str_startswith(argv[i], "-g")) {
args_add(stripped_args, argv[i]);
if (conf->unify && !str_eq(argv[i], "-g0")) {