X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=inline;f=tests%2Ftest-base64.c;h=657ba19b51294a46ccc47b589c346721ff494389;hb=562bd0a0f75b014c38b6ff0a712331270d8770bc;hp=92285f16fbb9a0f3bf0d590d27719ed1c73f81f6;hpb=112ca20edbdbbede4ffeac64892bb4fc5e1b04d6;p=gnulib.git diff --git a/tests/test-base64.c b/tests/test-base64.c old mode 100755 new mode 100644 index 92285f16f..657ba19b5 --- a/tests/test-base64.c +++ b/tests/test-base64.c @@ -1,15 +1,35 @@ -#include "base64.h" +/* Self tests for base64. + Copyright (C) 2004 Free Software Foundation, Inc. + Written by Simon Josefsson. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ +#include + +#include #include +#include #include +#include "base64.h" + int main (int argc, char *argv[]) { const char *in = "abcdefghijklmnop"; const char *b64in = "YWJjZGVmZw=="; char out[255]; - char *p; size_t len; bool ok;