mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
28 lines
541 B
C
28 lines
541 B
C
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <kernaux.h>
|
|
#include <ruby.h>
|
|
|
|
void init_assert();
|
|
void init_ntoa();
|
|
#ifdef HAVE_KERNAUX_SNPRINTF
|
|
void init_printf();
|
|
#endif // HAVE_KERNAUX_SNPRINTF
|
|
#ifdef HAVE_KERNAUX_CMDLINE
|
|
void init_cmdline();
|
|
#endif // HAVE_KERNAUX_CMDLINE
|
|
|
|
void Init_default()
|
|
{
|
|
init_assert();
|
|
init_ntoa();
|
|
#ifdef HAVE_KERNAUX_SNPRINTF
|
|
init_printf();
|
|
#endif // HAVE_KERNAUX_SNPRINTF
|
|
#ifdef HAVE_KERNAUX_CMDLINE
|
|
init_cmdline();
|
|
#endif // HAVE_KERNAUX_CMDLINE
|
|
}
|