File: hello.c

package info (click to toggle)
pointerize 0.6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge, squeeze
  • size: 160 kB
  • ctags: 123
  • sloc: ansic: 1,146; makefile: 121; sh: 3
file content (15 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "lang.h"

void foobar(void) {
	char *foo[]={_("I'm alive.\n"),_("I'm here\n")};
	printf(foo[1]);
}

int main (void) {
	LOAD_TRMFILE("es.trm");
	printf(_("Hello world\n"));
	foobar();
	exit (0);
}