1
0

just some comments

This commit is contained in:
dtb 2025-03-27 16:32:38 -06:00
parent 24cb04160a
commit 6d8d0d8c2d
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
/* 2025 DTB. Public Domain. */
/* libio is a microscopic library that exists to separate less relevant code
* from status(1). It should not be used in critical applications for lack of
* recoverability (as opposed to <stdio.h> on its own). */
void drop(void); /* Set the buffer to NULL. */
void out(char *s); /* Print the buffer if not NULL and replace it with s. */

View File

@ -1,5 +1,10 @@
/* 2025 DTB. Public domain. */
/* libkeyval is a key/value store library to be used for nonessential
* applications due to lack of recoverability (errors fail assert(3)).
* libkeyval deals with pointers and pointers only, and an effort has been made
* to reflect the simplicity of the procedure in the code itself. */
/* keyval store */
#ifndef state_settings_size
# define state_settings_size 100