8 * Terminate execution of the process, due to an abnormal (but non-bug)
11 * p_text - text string describing why the process is exiting
13 void die(const char* p_text
);
17 * Terminate execution of the process, due to an abnormal (but non-bug)
20 * p_text1 - text string describing why the process is exiting
21 * p_text2 - text to safely concatenate to p_text1
23 void die2(const char* p_text1
, const char* p_text2
);
27 * Terminate execution of the process, due to a suspected bug, trying to emit
28 * the reason this happened down the network in FTP response format.
30 * p_text - text string describing what bug trap has triggered
32 void bug(const char* p_text
);
36 * Terminate execution of the process, writing out the specified text string
39 * p_text - text string describing why the process is exiting
41 void vsf_exit(const char* p_text
);