summaryrefslogtreecommitdiffstats
path: root/zix/patree.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-09-28 17:49:03 +0000
committerDavid Robillard <d@drobilla.net>2014-09-28 17:49:03 +0000
commitb7d81e0674af26a326fad1d600012d1a9e2a05ae (patch)
treeaa8300de4cc458e77de607bbb4bd7b1fa12016b2 /zix/patree.h
parentdf41412520ae9962a3a833ccb5b2dd408abd43ed (diff)
downloadzix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.tar.gz
zix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.tar.bz2
zix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.zip
Use Markdown for parameters in dox comments.
git-svn-id: http://svn.drobilla.net/zix/trunk@93 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'zix/patree.h')
-rw-r--r--zix/patree.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zix/patree.h b/zix/patree.h
index 09f3538..c89bc9b 100644
--- a/zix/patree.h
+++ b/zix/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 @@ ZixPatree*
zix_patree_new(void);
/**
- Destroy @a t.
+ Destroy `t`.
*/
ZIX_API
void
zix_patree_free(ZixPatree* t);
/**
- Print a DOT description of @a t to @a fd.
+ Print a DOT description of `t` to `fd`.
*/
ZIX_API
void
zix_patree_print_dot(const ZixPatree* t, FILE* fd);
/**
- Insert @a str into @a t.
+ Insert `str` into `t`.
*/
ZIX_API
ZixStatus
zix_patree_insert(ZixPatree* t, const char* str);
/**
- Search for @a str in @a t.
+ Search for `str` in `t`.
*/
ZIX_API
ZixStatus