ltkc_img.c (1316B)
1 /* 2 * Copyright (c) 2023-2024 lumidify <nobody@lumidify.org> 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 */ 16 17 /* This is just a temporary hack to preprocess an image for sending it to 18 ltkd. The nicer way for this would be to have a special case for the 19 "image create" command in ltkc, but I was too lazy to implement that 20 right now. */ 21 22 #include <stdio.h> 23 24 int main(int argc, char *argv[]) { 25 (void)argc; 26 (void)argv; 27 int c; 28 while ((c = getchar()) != EOF) { 29 switch (c) { 30 case '\\': 31 fputs("\\\\", stdout); 32 break; 33 case '"': 34 fputs("\\\"", stdout); 35 break; 36 default: 37 putchar(c); 38 } 39 } 40 41 return 0; 42 }