blob: 9474c36edb2c037988d278737363561f23ea45c4 [file] [log] [blame]
/*
* Copyright (c) 2024 Abhinav Srivastava
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_POSIX_STROPTS_H_
#define ZEPHYR_INCLUDE_POSIX_STROPTS_H_
#define RS_HIPRI BIT(0)
#ifdef __cplusplus
extern "C" {
#endif
struct strbuf {
int maxlen;
int len;
char *buf;
};
int putmsg(int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr, int flags);
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_INCLUDE_POSIX_STROPTS_H_ */