fish-shell/signal.h
axel 2d77235890 Add additional event-handling files
darcs-hash:20051006073050-ac50b-aa386de02dab1b3b20d7cc3d8c6b6ad1be681f5d.gz
2005-10-06 17:30:50 +10:00

23 lines
426 B
C

/** \file signal.h
The library for various signal related issues
*/
/**
Get the integer signal value representing the specified signal, or
-1 of no signal was found
*/
int wcs2sig( const wchar_t *str );
/**
Get string representation of a signal
*/
const wchar_t *sig2wcs( int sig );
/**
Returns a description of the specified signal.
*/
const wchar_t *sig_description( int sig );
void signal_set_handlers();