melody-allocator/README.md

27 lines
419 B
Markdown
Raw Normal View History

2024-02-11 00:36:54 +00:00
# memory allocator
2024-02-12 17:47:33 +00:00
it allocates memory
2024-02-11 00:36:54 +00:00
## how to use
2024-02-13 03:19:25 +00:00
```
usage: allocatememory -b <bytes> [-o <output file>] [-s]
OPTIONS
-h displays help
-b number of bytes to allocate (e.g. 1024, 1g, 64K)
-o file to output to
-s run silently (requires -b and -o)
-w disable warnings ("i know what i'm doing!")
```
2024-02-11 00:36:54 +00:00
## how to compile
2025-03-25 00:07:21 +00:00
- `make`
- (optional) `sudo make install`
- yeag
2024-02-11 00:36:54 +00:00
## why
i was bored