mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 09:33:50 +01:00
37 lines
750 B
C
37 lines
750 B
C
/*
|
|
* Copyright (C) 2024-2025 Carl Seifert
|
|
* Copyright (C) 2024-2025 TU Dresden
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License v2.1. See the file LICENSE in the top level directory for
|
|
* more details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "net/unicoap/constants.h" /* IWYU pragma: export */
|
|
#include "net/unicoap/config.h" /* IWYU pragma: export */
|
|
#include "net/unicoap/message.h" /* IWYU pragma: export */
|
|
#include "net/unicoap/options.h" /* IWYU pragma: export */
|
|
|
|
/**
|
|
* @addtogroup net_unicoap
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Main header for `unicoap`
|
|
* @author Carl Seifert <carl.seifert1@mailbox.tu-dresden.de>
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|