Version 0.0
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@387 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
21
appl/ftp/common/err.h
Normal file
21
appl/ftp/common/err.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __ERR_H__
|
||||
#define __ERR_H__
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
extern char *__progname;
|
||||
|
||||
void verr(int eval, const char *fmt, va_list ap);
|
||||
void err(int eval, const char *fmt, ...);
|
||||
void verrx(int eval, const char *fmt, va_list ap);
|
||||
void errx(int eval, const char *fmt, ...);
|
||||
void vwarn(const char *fmt, va_list ap);
|
||||
void warn(const char *fmt, ...);
|
||||
void vwarnx(const char *fmt, va_list ap);
|
||||
void warnx(const char *fmt, ...);
|
||||
|
||||
#endif /* __ERR_H__ */
|
Reference in New Issue
Block a user