Súbor: [Platon] / ep / src / message.h (stiahnutie)
Revízia 1.10, Fri Nov 28 17:35:11 2003 UTC (21 years, 5 months ago) by nepto
Zmeny od 1.9: +3 -3
[lines]
Changed URL from www.platon.sk to platon.sk.
|
/*
* ep - extended pipelining
*
* message.h - output messages functions header file
* ____________________________________________________________
*
* Developed by Ondrej Jombik <nepto@platon.sk>
* and Lubomir Host <rajo@platon.sk>
* Copyright (c) 2000-2003 Platon SDG, http://platon.sk/
* All rights reserved.
*
* See README file for more information about this software.
* See COPYING file for license information.
*
* Download the latest version from
* http://platon.sk/projects/ep/
*/
/* $Platon: ep/src/message.h,v 1.9 2003/05/03 09:58:19 nepto Exp $ */
#ifndef _MESSAGE_H
#define _MESSAGE_H
#if defined(SELF) || defined(SELFTEST)
# define argv0 "ep-debug-mode"
#else
extern char *argv0;
#endif
extern char *conf_global_filename;
extern char *conf_user_filename;
/*
* Print normal message to stdout.
*/
void msg_print(char *fmt, ...);
/*
* Print error message to stdout (variable number of arguments).
*/
void msg_error_print(char *fmt, ...);
/*
* Print strings in array ended with NULL.
*/
void msg_array_print(char **array);
/*
* Print warning message to stdout (variable number of arguments).
*/
void msg_warn_print(char *fmt, ...);
/*
* Print debug message to stdout (variable number of arguments).
*/
#if DEBUG
void msg_debug_print(char *fmt, ...);
#endif
/*
* Print error message according errno.
*/
void msg_errno_print(void);
/*
* Print usage of program.
*/
void msg_usage_print(void);
#endif /* #ifndef _MESSAGE_H */
Platon Group <platon@platon.sk> http://platon.sk/
|