diff options
Diffstat (limited to 'zix/fat_patree.h')
-rw-r--r-- | zix/fat_patree.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zix/fat_patree.h b/zix/fat_patree.h index bc3bd66..2fb1b4d 100644 --- a/zix/fat_patree.h +++ b/zix/fat_patree.h @@ -1,5 +1,5 @@ /* - Copyright 2011 David Robillard <http://drobilla.net> + Copyright 2011-2014 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -36,28 +36,28 @@ ZixFatPatree* zix_fat_patree_new(void); /** - Destroy @a t. + Destroy `t`. */ ZIX_API void zix_fat_patree_free(ZixFatPatree* t); /** - Print a DOT description of @a t to @a fd. + Print a DOT description of `t` to `fd`. */ ZIX_API void zix_fat_patree_print_dot(const ZixFatPatree* t, FILE* fd); /** - Insert @a str into @a t. + Insert `str` into `t`. */ ZIX_API ZixStatus zix_fat_patree_insert(ZixFatPatree* t, const char* str); /** - Search for @a str in @a t. + Search for `str` in `t`. */ ZIX_API ZixStatus |