aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_print_internal.h
blob: 949a1cc707b86dacf3fd1a3bb696970e88032d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright (c) 2022, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#ifndef ODP_PRINT_INTERNAL_H_
#define ODP_PRINT_INTERNAL_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <stddef.h>

int _odp_snprint(char *str, size_t size, const char *format, ...);

#ifdef __cplusplus
}
#endif

#endif