Add -lgcrypt
[xxxterm/127001.git] / marco.c
blobf126044d84e8cbcea52b7cd5f70d5cd74d99d7a4
1 /* $xxxterm$ */
2 /*
3 * Copyright (c) 2011 Todd T. Fries <todd@fries.net>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #include <stdlib.h>
19 #include <string.h>
20 #if defined(__linux__)
21 #include <bsd/stdlib.h>
22 #endif
24 static const char *message[] = {
25 "I fully support your right to put restrictions on how I can modify"
26 " or distribute something you created. Calling these restrictions "
27 "\"liberty,\" however, is just Orwellian doublespeak",
28 "GET OFF MY INTERNET LAWN!!!!",
29 "here is your list of restrictions -> freedom!!!!",
30 "i am all for it being free; i am all for not allowing abuse",
31 "webkit 1.4 is a huge step backwards",
32 "i honestly dont get how people equate gpl with liberty or freedom",
33 "I have no idea where you came up with the idea that you have to "
34 "continuously patch OpenBSD. Last time I cared about that was when "
35 "I was still dicking around with Linux.",
36 "Problem with discussion is that it doesn't add any code to cvs.",
37 "I can insult you some more but I am not sure you'd get it.",
38 "the mouse is for copy/paste and the interwebs",
39 "You could run openbsd and be done with it. Unlike linux is doesn't "
40 "suck so that helps that decision.",
41 "Twitter is the dumbest fucking thing that has ever happened to the Internet.",
42 "[speaking of {open,libre}office] it is an obese crack whore with herpes boils "
43 "that are about to explode"
46 const char *
47 marco_message(int *len)
49 const char *str;
51 str = message[arc4random_uniform(sizeof(message)/sizeof(message[0]))];
52 *len = strlen(str);
54 return str;