File: mktestdata.c

package info (click to toggle)
lde 2.6.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,508 kB
  • ctags: 1,197
  • sloc: ansic: 7,780; yacc: 477; makefile: 227; sh: 205
file content (9 lines) | stat: -rw-r--r-- 115 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

main()
{
  int i,j;
  for (i=0; i<16; i++)
    for (j=0; j<1024; j++)
      printf("%1X",i);
}