Show
Ignore:
Timestamp:
04/28/08 09:57:03 (7 months ago)
Author:
ludovic.rousseau
Message:

convert C++ in C comment

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/libopensc/card-akis.c

    r3278 r3502  
    336336{ 
    337337        if (data->cmd == SC_PIN_CMD_VERIFY) { 
    338                 // ISO7816 implementation works 
     338                /* ISO7816 implementation works */ 
    339339                return iso_ops->pin_cmd(card, data, tries_left); 
    340340        } 
    341341 
    342342        if (data->cmd == SC_PIN_CMD_CHANGE) { 
    343                 // This is AKIS specific 
     343                /* This is AKIS specific */ 
    344344                int r; 
    345345                sc_apdu_t apdu; 
     
    527527        akis_ops.match_card = akis_match_card; 
    528528        akis_ops.init = akis_init; 
    529         // read_binary: ISO7816 implementation works 
    530         // write_binary: ISO7816 implementation works 
    531         // update_binary: ISO7816 implementation works 
    532         // erase_binary: Untested 
    533         // read_record: Untested 
    534         // write_record: Untested 
    535         // append_record: Untested 
    536         // update_record: Untested 
     529        /* read_binary: ISO7816 implementation works */ 
     530        /* write_binary: ISO7816 implementation works */ 
     531        /* update_binary: ISO7816 implementation works */ 
     532        /* erase_binary: Untested */ 
     533        /* read_record: Untested */ 
     534        /* write_record: Untested */ 
     535        /* append_record: Untested */ 
     536        /* update_record: Untested */ 
    537537        akis_ops.select_file = akis_select_file; 
    538         // get_response: ISO7816 implementation works 
    539         // get_challenge: ISO7816 implementation works 
     538        /* get_response: ISO7816 implementation works */ 
     539        /* get_challenge: ISO7816 implementation works */ 
    540540        akis_ops.logout = akis_logout; 
    541         // restore_security_env: Untested 
     541        /* restore_security_env: Untested */ 
    542542        akis_ops.set_security_env = akis_set_security_env; 
    543         // decipher: Untested 
    544         // compute_signature: ISO7816 implementation works 
     543        /* decipher: Untested */ 
     544        /* compute_signature: ISO7816 implementation works */ 
    545545        akis_ops.create_file = akis_create_file; 
    546546        akis_ops.delete_file = akis_delete_file; 
    547547        akis_ops.list_files = akis_list_files; 
    548         // check_sw: ISO7816 implementation works 
     548        /* check_sw: ISO7816 implementation works */ 
    549549        akis_ops.card_ctl = akis_card_ctl; 
    550550        akis_ops.process_fci = akis_process_fci; 
    551         // construct_fci: Not needed 
     551        /* construct_fci: Not needed */ 
    552552        akis_ops.pin_cmd = akis_pin_cmd; 
    553553        akis_ops.get_data = akis_get_data; 
    554         // put_data: Not implemented 
    555         // delete_record: Not implemented 
     554        /* put_data: Not implemented */ 
     555        /* delete_record: Not implemented */ 
    556556 
    557557        return &akis_drv;