File: c-ify.c

package info (click to toggle)
darkstat 3.0.722-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 868 kB
  • sloc: ansic: 7,585; sh: 660; javascript: 213; makefile: 174; php: 15
file content (33 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (2)
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
/* Converts a textfile to a const char array with characters escaped. */
#include <stdio.h>
#include <stdlib.h>

int
main(int argc, char **argv)
{
	int c, eol;
	if (argc != 2) {
		fprintf(stderr, "usage: %s name <infile >outfile.h\n",
			argv[0]);
		exit(EXIT_FAILURE);
	}
	printf("/* this file was automatically generated with c-ify */\n"
	       "static const char %s[] =", argv[1]);
	eol = 1;
	while ((c = getchar()) != EOF) {
		if (eol) {
			printf("\n\"");
			eol = 0;
		}
		switch (c) {
		case '\n': printf("\\n\""); eol = 1; break;
		case '"': printf("\\\""); break;
		case '\\': printf("\\\\"); break;
		default: putchar(c);
		}
	}
	printf(";\n"
	       "static const size_t %s_len = sizeof(%s) - 1;\n",
	       argv[1], argv[1]);
	return (0);
}