Revision 8308,
619 bytes
checked in by bert, 28 years ago
(diff) |
added protection from recursive inclusion
|
Line | |
---|
1 | /* signames.h -- deal with concerting signal names to numbers and back. |
---|
2 | * |
---|
3 | * $Header: /afs/dev.mit.edu/source/repository/athena/etc/newsyslog/signames.h,v 1.2 1996-04-29 18:53:10 bert Exp $ |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef SIGNAMES_H |
---|
7 | #define SIGNAMES_H |
---|
8 | |
---|
9 | #include <stdio.h> |
---|
10 | |
---|
11 | /* signal_name() returns the name for a given signal, or NULL if unknown. */ |
---|
12 | char* signal_name (int signum); |
---|
13 | |
---|
14 | /* signal_number() returns the number for a given signal, or 0 if unknown. */ |
---|
15 | int signal_number (char* name); |
---|
16 | |
---|
17 | /* fprint_signal_name() prints out the signal name, or "signal ##". */ |
---|
18 | void fprint_signal_name (FILE *f, int signum); |
---|
19 | |
---|
20 | #endif /* SIGNAMES_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.