File: test_ilistcreate.c

package info (click to toggle)
cowdancer 0.73
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 752 kB
  • ctags: 269
  • sloc: ansic: 3,822; sh: 481; makefile: 191; cpp: 6
file content (17 lines) | stat: -rwxr-xr-x 286 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*BINFMTC: ilistcreate.c
 test code for ilistcreate.c
 */
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
#include "ilist.h"

const char* ilist_PRGNAME="testcode";

int main()
{
  ilist_outofmemory("hello world\n");
  return 0;
}