diff options
author | David Robillard <d@drobilla.net> | 2012-01-08 21:24:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-08 21:24:32 +0000 |
commit | 62b8156a4be17341a77fc49f7e1fc7c582f4ac5b (patch) | |
tree | d452a4ad63c5b96fea492b10b32bdd61e663ca2e /serd | |
parent | be42496e09caf2c60d8bd71786ab8b352900a725 (diff) | |
download | serd-62b8156a4be17341a77fc49f7e1fc7c582f4ac5b.tar.gz serd-62b8156a4be17341a77fc49f7e1fc7c582f4ac5b.tar.bz2 serd-62b8156a4be17341a77fc49f7e1fc7c582f4ac5b.zip |
Update man page.
Sort command line options in help and man page.
Fix doxygen warnings about undocumented parameters.
git-svn-id: http://svn.drobilla.net/serd/trunk@282 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'serd')
-rw-r--r-- | serd/serd.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h index 2380c03e..ca9cb809 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -416,6 +416,7 @@ serd_node_new_uri(const SerdURI* uri, const SerdURI* base, SerdURI* out); Note that about 16 and 8 fractional digits are required to precisely represent a double and float, respectively. + @param d The value for the new node. @param frac_digits The maximum number of digits after the decimal place. */ SERD_API @@ -434,8 +435,10 @@ serd_node_new_integer(long i); This function can be used to make a serialisable node out of arbitrary binary data, which can be decoded using serd_base64_decode(). - @param wrap_lines If true lines are wrapped at 76 characters to conform - to RFC 2045. + + @param buf Raw binary input data. + @param size Size of @c buf. + @param wrap_lines Wrap lines at 76 characters to conform to RFC 2045. */ SERD_API SerdNode |