KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
library-dependence.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 library-dependence.h
4 Copyright (C) 2024 Ruslan Rostovtsev
5
6 This example program simply show how library works.
7*/
8
9#include <stdint.h>
10
11/**
12 * @brief Exported test functions
13 */
14int library_test_func(int arg);
15void library_test_func2(const char *arg);
16
17typedef int (*library_test_func_t)(int arg);
18typedef void (*library_test_func2_t)(const char *arg);
void(* library_test_func2_t)(const char *arg)
Definition library-dependence.h:18
int(* library_test_func_t)(int arg)
Definition library-dependence.h:17
int library_test_func(int arg)
Exported test functions.
Definition library-dependence.c:48
void library_test_func2(const char *arg)
Definition library-dependence.c:53