parser: Document parse_ifdef()

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-15 16:27:56 -05:00
parent fc6643ff3f
commit 32b8c79fc2

View File

@@ -225,6 +225,14 @@ parse_ifdef(struct rifle_state *state, struct token *tok)
return 0;
}
/*
* Handle an '#ifndef' directive
*
* @state: Compiler state
* @tok: Last token
*
* Returns zero on success
*/
static int
parse_ifndef(struct rifle_state *state, struct token *tok)
{