Changeset 129 in libcf for trunk/src/cf_codec.c


Ignore:
Timestamp:
06/22/13 12:08:30 (11 years ago)
Author:
cheese
Message:

#1 fix argument order

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cf_codec.c

    r128 r129  
    191191int
    192192CF_Codec_Base64_Encode (const cf_byte   * bin,
    193                         const size_t        len,
    194                         char                * base64)
     193                        const size_t    len,
     194                        char            * base64)
    195195{
    196196    const cf_byte   * src = bin;
     
    253253 */
    254254int
    255 CF_Codec_Base64_Decode (const char      * base64,
    256                         cf_byte * bin,
    257                         size_t          * len)
     255CF_Codec_Base64_Decode (const char  * base64,
     256                        cf_byte     * bin,
     257                        size_t      * len)
    258258{
    259259    const char  * src = base64;
Note: See TracChangeset for help on using the changeset viewer.