import RT-Thread@9217865c without bsp, libcpu and components/net
This commit is contained in:
commit
e2376a3709
1414 changed files with 390370 additions and 0 deletions
34
components/libc/compilers/common/include/posix/ctype.h
Normal file
34
components/libc/compilers/common/include/posix/ctype.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2022-06-07 Meco Man The first version.
|
||||
*/
|
||||
|
||||
#ifndef __POSIX_CTYPE_H__
|
||||
#define __POSIX_CTYPE_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#if !(defined(__ICCARM__) && (__VER__ > 9000000)) /* IAR9.0 has defined */
|
||||
#ifndef isascii /* some toolchain use macro to define it */
|
||||
int isascii(int c);
|
||||
#endif
|
||||
#endif /* !(defined(__ICCARM__) && (__VER__ > 9000000)) */
|
||||
|
||||
#ifndef toascii
|
||||
int toascii(int c);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __POSIX_CTYPE_H__ */
|
30
components/libc/compilers/common/include/posix/stdio.h
Normal file
30
components/libc/compilers/common/include/posix/stdio.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2022-06-07 Meco Man first version
|
||||
*/
|
||||
|
||||
#ifndef __POSIX_STDIO_H__
|
||||
#define __POSIX_STDIO_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef DFS_USING_POSIX
|
||||
ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
|
||||
ssize_t getline(char **lineptr, size_t *n, FILE *stream);
|
||||
#endif /* DFS_USING_POSIX */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __POSIX_STDIO_H__ */
|
32
components/libc/compilers/common/include/posix/stdlib.h
Normal file
32
components/libc/compilers/common/include/posix/stdlib.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2022-06-07 Meco Man The first version.
|
||||
*/
|
||||
|
||||
#ifndef __POSIX_STDLIB_H__
|
||||
#define __POSIX_STDLIB_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
char *itoa(int n, char *buffer, int radix);
|
||||
char *lltoa(int64_t ll, char *buffer, int radix);
|
||||
char *ltoa(long l, char *buffer, int radix);
|
||||
char *ulltoa(uint64_t ll, char *buffer, int radix);
|
||||
char *ultoa(unsigned long l, char *buffer, int radix);
|
||||
char *utoa(unsigned int n, char *buffer, int radix);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __POSIX_STDLIB_H__ */
|
43
components/libc/compilers/common/include/posix/string.h
Normal file
43
components/libc/compilers/common/include/posix/string.h
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2022-01-12 Meco Man The first version.
|
||||
*/
|
||||
|
||||
#ifndef __POSIX_STRING_H__
|
||||
#define __POSIX_STRING_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
void bzero(void * s, size_t n);
|
||||
void bcopy(const void * src, void * dest, size_t n);
|
||||
int bcmp(const void * s1, const void * s2, size_t n);
|
||||
void explicit_bzero(void * s, size_t n);
|
||||
char *index(const char * s, int c);
|
||||
char *rindex(const char * s, int c);
|
||||
int ffs(int i);
|
||||
int ffsl(long i);
|
||||
int ffsll(long long i);
|
||||
void *memrchr(const void* ptr, int ch, size_t pos);
|
||||
size_t strnlen(const char *s, size_t maxlen);
|
||||
char* strchrnul(const char *s, int c);
|
||||
int strcasecmp(const char * s1, const char * s2);
|
||||
int strncasecmp(const char * s1, const char * s2, size_t n);
|
||||
char *strdup(const char *s);
|
||||
char *strndup(const char *s, size_t size);
|
||||
char *strtok_r(char *str, const char *delim, char **saveptr);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __POSIX_STRING_H__ */
|
27
components/libc/compilers/common/include/posix/wchar.h
Normal file
27
components/libc/compilers/common/include/posix/wchar.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2022-06-07 Meco Man The first version
|
||||
*/
|
||||
|
||||
#ifndef __POSIX_WCHAR_H__
|
||||
#define __POSIX_WCHAR_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
int wcwidth(wchar_t);
|
||||
int wcswidth(const wchar_t*, size_t);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __POSIX_WCHAR_H__ */
|
Loading…
Add table
Add a link
Reference in a new issue