Improve doxygen documentation.

This commit is contained in:
Nils O. Selåsdal
2014-08-26 21:38:09 +02:00
parent 7e8c59699a
commit e45a4d5643
17 changed files with 143 additions and 108 deletions
+6
View File
@@ -3,11 +3,17 @@
#include <stddef.h>
/** @file
* Utility functions to map integers to strings and strings to strings.
*/
/** Mapping from an unsigned int to a string*/
struct UCValStr {
unsigned int val;
const char *str;
};
/** Mapping from a string to another string*/
struct UCStrStr {
const char *val;
const char *str;