]> git.somenet.org - irc/bugbot.git/blob - uuidgen/main.c
some old base
[irc/bugbot.git] / uuidgen / main.c
1 /* copyright?  hah!  it's 10 lines of code! */
2
3 #include <stdio.h>
4 #include "token.h"
5
6 int main(int argc, char **argv) {
7   uuid_state state;
8   uuid_t uuid;
9   char output[1024];
10
11   create_uuid_state(&state);
12   create_token(&state, &uuid);
13   format_token(output, &uuid);
14
15   printf("%s\n", output);
16   
17 }