/* @(#)error_extern.h 1.2 95/09/16 */

/*
 * Copyright (c) 1994, 1995 by Wayne C. Gramlich.  All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

#if !defined(ERROR_EXTERN_H)
#define ERROR_EXTERN_H

#include <stdio.h>

#include "str_typedef.h"
#include "error_typedef.h"

extern void errors_append(Errors, Str);
extern Errors errors_create(void);
extern unsigned errors_size(Errors);
extern void errors_write(Errors, FILE *, int);

#endif /* ERROR_EXTERN_H */
