Humming Owl's Multipurpose Library - HOML Pretty name, A lot of work ahead.

Isaac 7fbc7fb3b4 bytarr 7 小时之前
other_types 7fbc7fb3b4 bytarr 7 小时之前
basic_types.c f9a89ac6b7 first commit 2 周之前
basic_types.h c573ad4a0b bytarr stuff 6 天之前
endian.h c573ad4a0b bytarr stuff 6 天之前
homl.h c573ad4a0b bytarr stuff 6 天之前
mem_space.c 7fbc7fb3b4 bytarr 7 小时之前
mem_space.h c573ad4a0b bytarr stuff 6 天之前
readme c573ad4a0b bytarr stuff 6 天之前

readme

Humming Owl's Multi-purpose Library - HOML

typedef structs will always contain the following functions:
- check_pointer: to check if a pointer to a structure is valid (raw check).
- check_members: to check if the members of a struct are valid.
- check all: function to do both checks from above at the same time.
- create: to create the struct given all its members.
- free function: to free the struct (free its memory if manually allocated).
- print function: to print the struct info through a pointer to the struct (being/not being its members valid).
- compare function: to compare 2 structs of the same type.

...

Then, specific type functions (real)