File: test_ilistcreate.c

package info (click to toggle)
cowdancer 0.89
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 648 kB
  • sloc: ansic: 4,596; sh: 407; makefile: 144; cpp: 5
file content (16 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 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;
}