-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added the definition of VASQ_LL_PROCESS to config.h; added vasqExit; …
…changed version to 4.1.0
- Loading branch information
Showing
7 changed files
with
81 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
#ifndef VANILLA_SQUAD_CONFIG_H | ||
#define VANILLA_SQUAD_CONFIG_H | ||
|
||
/* | ||
The maximum number of bytes which will be written by a log statement. | ||
*/ | ||
#define VASQ_LOGGING_LENGTH 1024 | ||
|
||
/* | ||
The maximum number of bytes displayed by a hex dump. Any bytes past this limit are replaced by an | ||
ellipsis. | ||
*/ | ||
#define VASQ_HEXDUMP_SIZE 1024 | ||
|
||
/* | ||
The width of hex dumps. Must divide into VASQ_HEXDUMP_SIZE. | ||
*/ | ||
#define VASQ_HEXDUMP_WIDTH 16 | ||
|
||
/* | ||
The log level which displays the creation and exiting of processes. | ||
*/ | ||
#define VASQ_LL_PROCESS VASQ_LL_DEBUG | ||
|
||
#endif // VANILLA_SQUAD_CONFIG_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,5 @@ main() | |
|
||
VASQ_INFO(logger, "Printing 0: %i", 0); | ||
|
||
vasqLoggerFree(logger); | ||
|
||
return 0; | ||
VASQ_EXIT(logger, 0); | ||
} |