| 46 | } |
| 47 | |
| 48 | void memset(void *memory, char value, int length) |
| 49 | { |
| 50 | for (int i = 0; i < length; ++i) |
| 51 | { |
| 52 | ((char *)memory)[i] = value; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | int ceil(const int dividend, const int divisor) |
| 57 | { |
no outgoing calls
no test coverage detected