diff options
author | Heikki Kallasjoki <fis@zem.fi> | 2018-12-04 15:00:36 +0000 |
---|---|---|
committer | Heikki Kallasjoki <fis@zem.fi> | 2018-12-04 15:00:36 +0000 |
commit | 65439870f86997a6c50170a17cf0e399a39020a6 (patch) | |
tree | 2622e7981fd623e68a4eb84a97c5a9f87272f763 /util.h | |
parent | 0e9219a221201949cd0df937bea07355b6d4240b (diff) | |
download | nano-exporter-65439870f86997a6c50170a17cf0e399a39020a6.tar.gz nano-exporter-65439870f86997a6c50170a17cf0e399a39020a6.tar.xz nano-exporter-65439870f86997a6c50170a17cf0e399a39020a6.zip |
Add doc comments for the functions in util.h.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/util.h b/util.h index b87ad5f..9cd7f40 100644 --- a/util.h +++ b/util.h @@ -23,30 +23,69 @@ // character buffers +/** Opaque type for an internally maintained character (byte) buffer. */ typedef struct cbuf cbuf; +/** Allocates a new buffer with \p initial_size, growing up to \p max_size. */ cbuf *cbuf_alloc(size_t initial_size, size_t max_size); +/** Clears the contents of the buffer, resetting it to the empty string. */ void cbuf_reset(cbuf *buf); +/** Returns the current length of the buffer contents. */ size_t cbuf_len(cbuf *buf); +/** Appends \p len bytes from address \p src to the buffer \p buf. */ void cbuf_put(cbuf *buf, const void *src, size_t len); +/** Appends the null-terminated string at \p src to the buffer \p buf. */ void cbuf_puts(cbuf *buf, const char *src); +/** Appends a single byte \p c to \p buf. */ void cbuf_putc(cbuf *buf, int c); +/** Appends a formatted string to \p buf. */ void cbuf_putf(cbuf *buf, const char *fmt, ...); +/** + * Returns the contents of \p buf, writing the length to \p len. + * + * There may not be a terminating '\0' byte after the contents. And even if there is, the returned + * length will not include it. + */ const char *cbuf_get(struct cbuf *buf, size_t *len); /** Compares the contents of \p buf to the string in \p other, in shortlex order. */ int cbuf_cmp(cbuf *buf, const char *other); // string lists +/** Type for a singly linked list of strings. */ struct slist { struct slist *next; char data[]; }; +/** Splits \p str into a list of strings, using \p delim as the delimiter. */ struct slist *slist_split(const char *str, const char *delim); +/** + * Appends \p str to a string list. + * + * The address of the new element is written to the location pointed by \p prev, which should be + * either the `next` pointer of the last element of an existing list, or (for an empty list) the + * future pointer to a list head. The return value will point at the `next` pointer of the newly + * allocated element, so code like the following can be used to iteratively construct a list: + * + * struct slist *list = 0; + * struct slist **prev = &list; + * while (...) { + * // do something to get a string 'str' + * prev = slist_append(prev, str); + * } + */ struct slist **slist_append(struct slist **prev, const char *str); +/** Prepends \p str to a string list, returning the new head node. */ struct slist *slist_prepend(struct slist *list, const char *str); +/** Returns `true` if \p list contains as element the string \p key. */ bool slist_contains(const struct slist *list, const char *key); +/** + * Returns `true` if any element of \p list matches \p key. + * + * The strings must match exactly, with the exception that if the list elements ends in the '*' + * character, any \p key string that starts with the prefix before the '*' will count as matching. + */ bool slist_matches(const struct slist *list, const char *key); // miscellaneous utilities |