Index: openpgpsdk/trunk/src/armour.c =================================================================== --- openpgpsdk/trunk/src/armour.c (revision 411) +++ openpgpsdk/trunk/src/armour.c (revision 412) @@ -754,8 +754,8 @@ /** - * \param parse_info - * \param without_gap - * \param no_gap - * \param trailing_whitespace + * \param parse_info Usual structure containing information about to how to do the parse + * \param without_gap Allow headers in armoured data that are not separated from the data by a blank line + * \param no_gap Allow no blank line at the start of armoured data + * \param trailing_whitespace Allow armoured data to have trailing whitespace where we strictly would not expect it */ void ops_reader_push_dearmour(ops_parse_info_t *parse_info, Index: openpgpsdk/trunk/src/packet-parse.c =================================================================== --- openpgpsdk/trunk/src/packet-parse.c (revision 410) +++ openpgpsdk/trunk/src/packet-parse.c (revision 412) @@ -2683,4 +2683,10 @@ { return ops_parse_cb(content,cbinfo->next); } +/** + * \brief + * \param pinfo + * \param reader + * \param arg + */ void ops_reader_set(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) { @@ -2689,4 +2695,10 @@ } +/** + * \brief + * \param pinfo + * \param reader + * \param arg + */ void ops_reader_push(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) { @@ -2697,7 +2709,11 @@ pinfo->rinfo.next=rinfo; pinfo->rinfo.pinfo=pinfo; + ops_reader_set(pinfo,reader,arg); } +/** + * \param pinfo + */ void ops_reader_pop(ops_parse_info_t *pinfo) {