File: test.c

package info (click to toggle)
dte 1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,152 kB
  • sloc: ansic: 28,421; sh: 94; awk: 56; makefile: 13; sed: 1
file content (7 lines) | stat: -rw-r--r-- 137 bytes parent folder | download
1
2
3
4
5
6
7
#include <stdio.h>

int c_syntax_test(int argc, char *argv[])
{
    fprintf(stderr, "test: %s %c %d\n", "str", 'x', 42);
    return 0;
}