This repository has no description
1# secret-santa
2Simple secret santa program in C, outputting a base64-encoded list of recievers that can be pasted to the corresponding givers.
3
4Using libb64's impl of encoding.
5
6## Usage
7
8```bash
9> gcc -o secret_santa main.c
10> echo "albert bobby colin" | ./secret_santa
11Seed: 12345
12colin: (base 64 encoding of the word bobby)
13albert: (base 64 encoding of the word colin)
14bobby: (base 64 encoding of the word albert)
15```
16
17### Arguments
18`-s` seed, for replicability.
19`-d` decode/debug, leave the recipients as plaintext.
20