Xext: namespace: Properly document parseLine() function

The previous comment made no sense. Add a proper comment to document the
function instead.

Signed-off-by: Aggelos Tselios <aggelostselios777@gmail.com>
This commit is contained in:
Aggelos Tselios
2026-01-21 19:51:58 +02:00
committed by Enrico Weigelt
parent 162fda3bd6
commit f9ddcbd9ae

View File

@@ -63,10 +63,9 @@ static int hex2bin(const char *in, char *out)
return 1;
}
/*
* loadConfig
*
* Load the namespace config
/**
* @brief Parse a single line from the configuration file,
* ignoring comments and newlines. Prints a warning if it finds an unknown token.
*/
static void parseLine(char *line, struct Xnamespace **walk_ns)
{