> For the complete documentation index, see [llms.txt](https://tpout.gitbook.io/workspace/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tpout.gitbook.io/workspace/c/dong-tai-fen-pei/alloc_usage.c.md).

# alloc\_usage.c

```c
#include "alloc.h"

void
function(){
    int *new_memory;
    new_memory = MALLOC( 25,int );
}
```
