diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-03-16 10:38:53 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-03-16 10:38:53 +0100 |
commit | 3b3f90198af1c612fa031629846381102a14d663 (patch) | |
tree | 8d62a37ed88a57198adbbaf63a9b8c96d4c83668 /lib/parser_aux.c | |
parent | 7cb79340b7f52b347c9748133e1dc9ef50c1b6b2 (diff) | |
download | libtasn1-3b3f90198af1c612fa031629846381102a14d663.tar.gz libtasn1-3b3f90198af1c612fa031629846381102a14d663.tar.bz2 libtasn1-3b3f90198af1c612fa031629846381102a14d663.zip |
Doc fixes.
Diffstat (limited to 'lib/parser_aux.c')
-rw-r--r-- | lib/parser_aux.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/parser_aux.c b/lib/parser_aux.c index b740a1e..99da7c3 100644 --- a/lib/parser_aux.c +++ b/lib/parser_aux.c @@ -83,12 +83,12 @@ _asn1_add_node (unsigned int type) * @pointer: NODE_ASN element pointer. * @name: null terminated string with the element's name to find. * - * Searches for an element called NAME starting from POINTER. The + * Searches for an element called @name starting from @pointer. The * name is composed by differents identifiers separated by dots. When - * *POINTER has a name, the first identifier must be the name of - * *POINTER, otherwise it must be the name of one child of *POINTER. + * *@pointer has a name, the first identifier must be the name of + * *@pointer, otherwise it must be the name of one child of *@pointer. * - * Return value: the searching result. NULL if not found. + * Returns: the search result, or %NULL if not found. **/ ASN1_TYPE asn1_find_node (ASN1_TYPE pointer, const char *name) @@ -1149,7 +1149,7 @@ parse_version_string (const char *s, int *major, int *minor, int *micro) * * See %ASN1_VERSION for a suitable @req_version string. * - * Return value: Version string of run-time library, or %NULL if the + * Returns: Version string of run-time library, or %NULL if the * run-time library does not meet the required version number. */ const char * |