just some comments
This commit is contained in:
parent
24cb04160a
commit
6d8d0d8c2d
@ -1,3 +1,8 @@
|
|||||||
/* 2025 DTB. Public Domain. */
|
/* 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 drop(void); /* Set the buffer to NULL. */
|
||||||
void out(char *s); /* Print the buffer if not NULL and replace it with s. */
|
void out(char *s); /* Print the buffer if not NULL and replace it with s. */
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
/* 2025 DTB. Public domain. */
|
/* 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 */
|
/* keyval store */
|
||||||
#ifndef state_settings_size
|
#ifndef state_settings_size
|
||||||
# define state_settings_size 100
|
# define state_settings_size 100
|
||||||
|
Loading…
Reference in New Issue
Block a user