Skip to content

Commit

Permalink
Doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Aug 29, 2014
1 parent 2bb8d55 commit 0b118eb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/lib/print.c
Expand Up @@ -824,8 +824,12 @@ void vp_printlist(FILE *fp, VALUE_PAIR const *vp)
}


/*
* vp_prints_value for talloc
/** Print one attribute value to a string
*
* @param ctx to allocate string in.
* @param vp to print.
* @param escape PW_TYPE_STRING attribute values.
* @return a talloced buffer with the attribute operator and value.
*/
char *vp_aprint_value(TALLOC_CTX *ctx, VALUE_PAIR const *vp, bool escape)
{
Expand Down Expand Up @@ -973,6 +977,7 @@ char *vp_aprint_value(TALLOC_CTX *ctx, VALUE_PAIR const *vp, bool escape)
*
* @param ctx to allocate string in.
* @param vp to print.
* @param escape PW_TYPE_STRING attribute values.
* @return a talloced buffer with the attribute operator and value.
*/
char *vp_aprint(TALLOC_CTX *ctx, VALUE_PAIR const *vp, bool escape)
Expand Down

0 comments on commit 0b118eb

Please sign in to comment.