ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
shutdown.h
Go to the documentation of this file.
1
23#pragma once
24
25#include <stdbool.h>
26
32typedef bool (*shutdown_check_fn)(void);
33
44
55bool shutdown_is_requested(void);
56
bool(* shutdown_check_fn)(void)
Shutdown check callback function type.
Definition shutdown.h:32
bool shutdown_is_requested(void)
Check if shutdown has been requested.
Definition common.c:45
void shutdown_register_callback(shutdown_check_fn callback)
Register application's shutdown check function.
#define bool
Definition stdbool.h:22