alloc and serde experiments
  • C 95.1%
  • Makefile 4.9%
Find a file
2025-02-06 19:46:50 +05:45
COPYING COPYING/README 2025-02-05 20:27:08 +05:45
example.c add notice 2025-02-06 19:17:32 +05:45
falloc.c fix leaks, optimize stuff and clean up 2025-02-06 19:15:53 +05:45
falloc.h add notice 2025-02-06 19:17:32 +05:45
Makefile benchmarking 2025-02-06 13:57:47 +05:45
README README 2025-02-05 23:41:30 +05:45
serde.c serde: fix an opise 2025-02-06 19:46:50 +05:45

--------------------------------------------------
falloc: fast allocator library (under GPL3)
--------------------------------------------------
falloc()		:	allocate memory 
ffree() 		: 	free memory

serde_init() 	: 	set up serde
serptr() 		: 	serialize data to disk
deserptr() 		:	deserialize data from disk
-------------------------------------------------
why? I had a few ideas that I wanted to test
-------------------------------------------------
should I use it? I dont know
-------------------------------------------------
building the static library:
	$ make 
-------------------------------------------------
building and running the example:
	$ make example
	$ ./example
-------------------------------------------------