/* * server-coap.h -- RIOT client example * * Copyright (C) 2023 Jon Shallow * * SPDX-License-Identifier: BSD-2-Clause * * This file is part of the CoAP library libcoap. Please see README for terms * of use. */ #ifndef SERVER_COAP_H #define SERVER_COAP_H #ifdef __cplusplus extern "C" { #endif #include "coap_config.h" #include /* Start up the CoAP Server */ void server_coap_init(int argc, char **argv); #ifdef __cplusplus } #endif #endif /* SERVER_COAP_H */