Changeset 5ebff60 for lib/base64.c


Ignore:
Timestamp:
2015-02-20T22:50:54Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
0b9daac, 3d45471, 7733b8c
Parents:
af359b4
git-author:
Indent <please@…> (19-02-15 05:47:20)
git-committer:
dequis <dx@…> (20-02-15 22:50:54)
Message:

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/base64.c

    raf359b4 r5ebff60  
    2929char *tobase64(const char *text)
    3030{
    31         return base64_encode((const unsigned char *)text, strlen(text));
     31        return base64_encode((const unsigned char *) text, strlen(text));
    3232}
    3333
     
    4242{
    4343        unsigned char *out;
     44
    4445        base64_decode(in, &out);
    45         return (char*) out;
     46        return (char *) out;
    4647}
    4748
     
    4950{
    5051        gsize len;
     52
    5153        *out = g_base64_decode(in, &len);
    5254
Note: See TracChangeset for help on using the changeset viewer.