File: zig_test.c

package info (click to toggle)
kalign 1%3A3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,060 kB
  • sloc: ansic: 16,129; python: 10,759; cpp: 636; sh: 65; makefile: 57
file content (20 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* #include "tldevel.h" */
#include "stdio.h"
#include "string.h"
/* #include "tlrng.h" */

#include <stddef.h>

/* #include "strnlen_compat.h" */

int main(int argc, char *argv[])
{
        /* struct rng_state* rng = NULL; */
        /* rng = init_rng(0); */
        /* fprintf(stdout,"Kalign (%s)\n", KALIGN_PACKAGE_VERSION); */
        /* fprintf(stdout,"HEllo random: %f\n", tl_random_double(rng)); */

        int len = strnlen("FAFAF", 40);
        fprintf(stdout,"Len: %d\n",len);
        return 0;
}