Changeset 412

Show
Ignore:
Timestamp:
04/27/06 17:10:53
Author:
rachel
Message:

More doxygen comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openpgpsdk/trunk/src/armour.c

    r411 r412  
    754754 
    755755/** 
    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 
    760760 */ 
    761761void ops_reader_push_dearmour(ops_parse_info_t *parse_info, 
  • openpgpsdk/trunk/src/packet-parse.c

    r410 r412  
    26832683    { return ops_parse_cb(content,cbinfo->next); } 
    26842684 
     2685/** 
     2686 * \brief 
     2687 * \param pinfo 
     2688 * \param reader 
     2689 * \param arg 
     2690 */ 
    26852691void ops_reader_set(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) 
    26862692    { 
     
    26892695    } 
    26902696 
     2697/** 
     2698 * \brief  
     2699 * \param pinfo 
     2700 * \param reader 
     2701 * \param arg 
     2702 */ 
    26912703void ops_reader_push(ops_parse_info_t *pinfo,ops_reader_t *reader,void *arg) 
    26922704    { 
     
    26972709    pinfo->rinfo.next=rinfo; 
    26982710    pinfo->rinfo.pinfo=pinfo; 
     2711 
    26992712    ops_reader_set(pinfo,reader,arg); 
    27002713    } 
    27012714 
     2715/** 
     2716 * \param pinfo 
     2717 */ 
    27022718void ops_reader_pop(ops_parse_info_t *pinfo) 
    27032719    {