Update JoeyLib Memory Functions

Scott Duensing 2019-10-17 18:55:31 -05:00
parent e9f255c01a
commit 9fd0cc40b2

@ -10,7 +10,7 @@ Frees a block of memory pointed to by `p`.
```c
void *jlMalloc(size_t *bytes);
```
Allocates `bytes` of memory and returns a pointer to the new block.
Allocates `bytes` of memory and returns a pointer to the new block. Unlike traditional `malloc`, the new block will be zeroed.
#### jlRealloc
```c