1 /* 2 * client-coap.h -- RIOT client example 3 * 4 * Copyright (C) 2023 Jon Shallow <supjps-libcoap@jpshallow.com> 5 * 6 * SPDX-License-Identifier: BSD-2-Clause 7 * 8 * This file is part of the CoAP library libcoap. Please see README for terms 9 * of use. 10 */ 11 12 #ifndef CLIENT_COAP_H 13 #define CLIENT_COAP_H 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 #include "coap_config.h" 20 #include <coap3/coap.h> 21 22 /* Start up the CoAP Client */ 23 void client_coap_init(int argc, char **argv); 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif /* CLIENT_COAP_H */ 30