Improve documentation two functions

Namely `cmd_process_input()` and `files_get_data_path()`.

Edited by @jubalh.
This commit is contained in:
John Hernandez
2023-07-05 18:40:18 +02:00
parent e1d137f4e6
commit 00bea804e2
2 changed files with 18 additions and 2 deletions

View File

@@ -188,6 +188,13 @@ _string_matches_one_of(const char* what, const char* is, bool is_can_be_null, co
return ret;
}
/**
* @brief Processes a line of input and determines if profanity should continue.
*
* @param window
* @param inp The input string to process.
* @return Returns TRUE if profanity is to continue, FALSE otherwise.
*/
gboolean
cmd_process_input(ProfWin* window, char* inp)
{