| 83 | #define TO_INT(coef, arg) coef > 0 ? toIntFloor(arg) : toIntCeil(arg) |
| 84 | |
| 85 | static void AddChar(BString<32>& buffer, char c) |
| 86 | { |
| 87 | int n = strlen(buffer); |
| 88 | if (n < 32 - 1) |
| 89 | { |
| 90 | buffer[n] = c; |
| 91 | buffer[n + 1] = 0; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | static int Modulo(int& i, int base) |
| 96 | { |
no outgoing calls
no test coverage detected