blob: 545801ad331ad9ca6a6fa2261206cc805b0294e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
** -*- C -*-
**
** testIsEmpty.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Wed Feb 14 16:07:57 2007 jofret
** Last update Fri Apr 27 08:59:49 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef __TESTISEMPTY_H__
#define __TESTISEMPTY_H__
#include <stdio.h>
#include <assert.h>
#include "isempty.h"
#define ERROR 51
int sisemptyaTest(void);
int disemptyaTest(void);
int cisemptyaTest(void);
int zisemptyaTest(void);
int testIsEmpty(void);
#endif /* ! __TESTISEMPTY_H__ */
|