Changeset 944 for trunk/src


Ignore:
Timestamp:
05/25/07 10:42:15 (5 years ago)
Author:
aj
Message:

kill dead code and fix missing static declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ct/client.c

    r824 r944  
    110110} 
    111111 
     112#if 0 
    112113/* 
    113114 * Print something to the reader's display 
     
    130131        return ct_socket_call(h->sock, &args, &resp); 
    131132} 
     133#endif 
    132134 
    133135/* 
     
    200202} 
    201203 
     204#if 0 
    202205int ct_card_eject(ct_handle * h, unsigned int slot, 
    203206                  unsigned int timeout, const char *message) 
     
    220223        return ct_socket_call(h->sock, &args, &resp); 
    221224} 
     225#endif 
    222226 
    223227int ct_card_set_protocol(ct_handle * h, unsigned int slot, 
     
    432436 * Add arguments when calling a resource manager function 
    433437 */ 
    434 void ct_args_int(ct_buf_t * bp, ifd_tag_t tag, unsigned int value) 
     438static void ct_args_int(ct_buf_t * bp, ifd_tag_t tag, unsigned int value) 
    435439{ 
    436440        ct_tlv_builder_t builder; 
     
    440444} 
    441445 
    442 void ct_args_string(ct_buf_t * bp, ifd_tag_t tag, const char *value) 
     446static void ct_args_string(ct_buf_t * bp, ifd_tag_t tag, const char *value) 
    443447{ 
    444448        ct_tlv_builder_t builder; 
     
    448452} 
    449453 
    450 void ct_args_opaque(ct_buf_t * bp, ifd_tag_t tag, const unsigned char *value, 
     454static void ct_args_opaque(ct_buf_t * bp, ifd_tag_t tag, const unsigned char *value, 
    451455                    size_t len) 
    452456{ 
Note: See TracChangeset for help on using the changeset viewer.