Add comments to functions.

This commit is contained in:
gamemann
2021-11-12 17:30:35 +00:00
parent becaeb4b34
commit bcfaccb71e
3 changed files with 58 additions and 0 deletions

View File

@@ -13,6 +13,13 @@ const struct option opts[] =
{NULL, 0, NULL, 0}
};
/**
* Parses the command line and stores values in the cmdline structure.
*
* @param cmd A pointer to the cmdline structure.
*
* @return Void
*/
void parsecommandline(struct cmdline *cmd, int argc, char *argv[])
{
int c;