mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 06:41:55 +00:00
And update the patch file and shell script Signed-off-by: Øyvind Rønningstad <oyvind.ronningstad@nordicsemi.no>
32 lines
665 B
C
32 lines
665 B
C
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Generated using zcbor version 0.9.0
|
|
* https://github.com/zephyrproject-rtos/zcbor
|
|
* Generated with a --default-max-qty of 99
|
|
*/
|
|
|
|
#ifndef LWM2M_SENML_CBOR_DECODE_H__
|
|
#define LWM2M_SENML_CBOR_DECODE_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
#include "lwm2m_senml_cbor_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int cbor_decode_lwm2m_senml(const uint8_t *payload, size_t payload_len, struct lwm2m_senml *result,
|
|
size_t *payload_len_out);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LWM2M_SENML_CBOR_DECODE_H__ */
|