1 /*
2  * Copyright (c) 2023 Basalte bv
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __LIB_H_
8 #define __LIB_H_
9 
10 #include <proto/simple.pb.h>
11 
12 /**
13  * Some sample library function that fills a SimpleMessage struct
14  */
15 void lib_fill_message(SimpleMessage *msg);
16 
17 #endif
18