mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Add a doc block to parse_cpp_line.
It took me too long to figure it out :P
This commit is contained in:
parent
4f58429137
commit
027e76b4c9
1 changed files with 8 additions and 0 deletions
|
@ -589,6 +589,14 @@ load_file (const char *fname)
|
|||
return src;
|
||||
}
|
||||
|
||||
/** Parse a cpp line number directive.
|
||||
|
||||
Parses a cpp line directive of the form "# 1 file", setting the line and
|
||||
file fields of \a script. "#line 1 file" is supported, too.
|
||||
|
||||
\param script the script being parsed
|
||||
\param filename storage for the parsed filename
|
||||
*/
|
||||
static void
|
||||
parse_cpp_line (script_t *script, dstring_t *filename)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue