#include "Utilities.h"
Functions | |
| void | __Assert (bool Assertion, char *ErrorMessage, int Line, const char *FileName) |
| void | itoa (char *dest, int val) |
| int | max (int a, int b) |
| Returns the value that is the largest. | |
| void __Assert | ( | bool | Assertion, | |
| char * | ErrorMessage = NULL, |
|||
| int | Line = -1, |
|||
| const char * | FileName = NULL | |||
| ) |
Custom Assert Prints the given error message, given line number, and the given file name
| void itoa | ( | char * | dest, | |
| int | val | |||
| ) |
Simple itoa implementation Given a decimal integer, convert it to a string
| int max | ( | int | a, | |
| int | b | |||
| ) |
Returns the value that is the largest.
1.5.5