dns/result.h and dns/compress.h removed from t_api.h

This commit is contained in:
David Lawrence
2000-05-24 03:45:00 +00:00
parent ba1245a855
commit fe56f2116b
6 changed files with 34 additions and 16 deletions

View File

@@ -18,9 +18,7 @@
#ifndef ISC_T_API_H
#define ISC_T_API_H 1
#include <stdio.h>
#include <dns/result.h>
#include <dns/compress.h>
#include <stdio.h>
/*
*
@@ -50,7 +48,6 @@
#define T_MAXTOKS 16
#define T_ARG(n) (*(av + (n)))
typedef void (*PFV)(void);
typedef struct {
@@ -58,20 +55,35 @@ typedef struct {
char *func_name;
} testspec_t;
extern int T_debug;
extern testspec_t T_testlist[];
void t_assert(const char *component, int anum, int class,
const char *what, ...);
void t_info(const char *format, ...);
void t_result(int result);
char *t_getenv(const char *name);
char *t_fgetbs(FILE *fp);
isc_result_t t_dns_result_fromtext(char *result);
int t_dc_method_fromtext(char *dc_method);
int t_bustline(char *line, char **toks);
int t_eval(char *filename, int (*func)(char **), int nargs);
void
t_assert(const char *component, int anum, int class, const char *what, ...);
void
t_info(const char *format, ...);
void
t_result(int result);
char *
t_getenv(const char *name);
char *
t_fgetbs(FILE *fp);
isc_result_t
t_dns_result_fromtext(char *result);
int
t_dc_method_fromtext(char *dc_method);
int
t_bustline(char *line, char **toks);
int
t_eval(char *filename, int (*func)(char **), int nargs);
#endif /* ISC_T_API_H */