v4.0.0-rc2 - add function 'successlog'
This commit is contained in:
@@ -76,4 +76,24 @@ void warnlog(char MSG[]);
|
||||
|
||||
void errlog(char MSG[]);
|
||||
|
||||
/**************************************************************************************************************/
|
||||
|
||||
/*
|
||||
* successlog
|
||||
*
|
||||
* DESCRIPTION: Successlog outputs a stylized success message. It follows Glacier's uniform CLI style.
|
||||
* PARAMETERS:
|
||||
* char MSG[] -> The message to output
|
||||
* RETURN VALUES:
|
||||
* None.
|
||||
* CAVEATS:
|
||||
* * Cannot output variables. If you must output variables, use printf instead.
|
||||
* * A NEWLINE ('\n') character is implied, therefore putting one at the end of
|
||||
* a string is not needed.
|
||||
* EXAMPLE:
|
||||
* successlog("This is a success message.");
|
||||
*/
|
||||
|
||||
void successlog(char MSG[]);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user