Changeset 412
- Timestamp:
- 04/27/06 17:10:53
- Files:
-
- openpgpsdk/trunk/src/armour.c (modified) (1 diff)
- openpgpsdk/trunk/src/packet-parse.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/src/armour.c
r411 r412 754 754 755 755 /** 756 * \param parse_info 757 * \param without_gap 758 * \param no_gap 759 * \param trailing_whitespace 756 * \param parse_info Usual structure containing information about to how to do the parse 757 * \param without_gap Allow headers in armoured data that are not separated from the data by a blank line 758 * \param no_gap Allow no blank line at the start of armoured data 759 * \param trailing_whitespace Allow armoured data to have trailing whitespace where we strictly would not expect it 760 760 */ 761 761 void ops_reader_push_dearmour(ops_parse_info_t *parse_info, openpgpsdk/trunk/src/packet-parse.c
r410 r412 2683 2683 { return ops_parse_cb(content,cbinfo->next); } 2684 2684 2685 /** 2686 * \brief 2687 * \param pinfo 2688 * \param reader 2689 * \param arg 2690 */ 2685 2691 void ops_reader_set(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) 2686 2692 { … … 2689 2695 } 2690 2696 2697 /** 2698 * \brief 2699 * \param pinfo 2700 * \param reader 2701 * \param arg 2702 */ 2691 2703 void ops_reader_push(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) 2692 2704 { … … 2697 2709 pinfo->rinfo.next=rinfo; 2698 2710 pinfo->rinfo.pinfo=pinfo; 2711 2699 2712 ops_reader_set(pinfo,reader,arg); 2700 2713 } 2701 2714 2715 /** 2716 * \param pinfo 2717 */ 2702 2718 void ops_reader_pop(ops_parse_info_t *pinfo) 2703 2719 {
