zephyr/tests/modules/nanopb/lib/lib.h

18 lines
273 B
C

/*
* Copyright (c) 2023 Basalte bv
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __LIB_H_
#define __LIB_H_
#include <proto/simple.pb.h>
/**
* Some sample library function that fills a SimpleMessage struct
*/
void lib_fill_message(SimpleMessage *msg);
#endif