2016-05-03 19:31:07 +00:00
|
|
|
// Prototypes for functions for performing sanity checks on the program state.
|
2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_SANITY_H
|
|
|
|
#define FISH_SANITY_H
|
|
|
|
|
2016-05-03 19:31:07 +00:00
|
|
|
/// Call this function to tell the program it is not in a sane state.
|
2005-09-20 13:26:39 +00:00
|
|
|
void sanity_lose();
|
|
|
|
|
2016-05-03 19:31:07 +00:00
|
|
|
/// Perform sanity checks, return 1 if program is in a sane state 0 otherwise.
|
2017-01-24 23:14:56 +00:00
|
|
|
bool sanity_check();
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-05-03 19:31:07 +00:00
|
|
|
/// Try and determine if ptr is a valid pointer. If not, loose sanity.
|
|
|
|
///
|
|
|
|
/// \param ptr The pointer to validate
|
|
|
|
/// \param err A description of what the pointer refers to, for use in error messages
|
|
|
|
/// \param null_ok Wheter the pointer is allowed to point to 0
|
2012-11-19 00:30:30 +00:00
|
|
|
void validate_pointer(const void *ptr, const wchar_t *err, int null_ok);
|
2005-10-04 15:11:39 +00:00
|
|
|
|
|
|
|
#endif
|