mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01:00
14 lines
265 B
C
14 lines
265 B
C
//---
|
|
// core:kernel - Kernel functions
|
|
//---
|
|
|
|
#ifndef GINT_CORE_KERNEL
|
|
#define GINT_CORE_KERNEL
|
|
|
|
/* kinit(): Install and start gint */
|
|
void kinit(void);
|
|
|
|
/* kquit(): Quit gint and give back control to the system */
|
|
void kquit(void);
|
|
|
|
#endif /* GINT_CORE_KERNEL */
|