foo.h


1
#ifndef FOO_H
2
#define FOO_h
3
4
#include <stdint.h>
5
#include <stdbool.h>
6
7
typedef struct foo_t
8
{
9
    int i;
10
    int x;
11
} foo_t;
12
13
/******************************************************************************/
14
foo_t *get_default_foo(void);
15
bool set_my_foo(foo_t *src);
16
17
#endif // FOO_H