File: b64decode.c

package info (click to toggle)
libowfat 0.34-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,288 kB
  • sloc: ansic: 20,181; makefile: 16
file content (34 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <string.h>
#include <unistd.h>
#include "buffer.h"
#include "textcode.h"
#include "havealloca.h"

void b64encode(const char* c) {
  char* buf=alloca(strlen(c)*2+4);
  unsigned long dlen;
  scan_base64(c,buf,&dlen);
  buffer_put(buffer_1,buf,dlen);
}

int main(int argc,char* argv[]) {
  int i;
  for (i=1; i<argc; ++i) {
    b64encode(argv[i]);
    buffer_flush(buffer_1);
  }
  if (argc<2) {
    char src[1024];
    int len;
    while ((len=read(0,src,sizeof(src)-1))>0) {
      src[len]=0;
      b64encode(src);
    }
    if (isatty(1))
      buffer_putnlflush(buffer_1);
    else
      buffer_flush(buffer_1);
    if (len==-1) return(1);
  }
  return 0;
}