posix-next API 0.1.0
Out-of-tree Zephyr POSIX module
Loading...
Searching...
No Matches
posix_string.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2025 The Zephyr Contributors
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
20#ifndef ZEPHYR_INCLUDE_POSIX_POSIX_STRING_H_
21#define ZEPHYR_INCLUDE_POSIX_POSIX_STRING_H_
22
23#if defined(_POSIX_C_SOURCE) || defined(__DOXYGEN__)
24
25#include <stddef.h> /* NULL, size_t */
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/* TODO: additional POSIX signatures here */
32
47char *strsignal(int signo);
48
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif /* defined(_POSIX_C_SOURCE) || defined(__DOXYGEN__) */
55
56#endif /* ZEPHYR_INCLUDE_POSIX_POSIX_STRING_H_ */
char * strsignal(int signo)
Return a string describing a signal number.