mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-20 13:55:26 +08:00
[libc] implement extension standard C functions (#6044)
* implement extension standard C functions
This commit is contained in:

committed by
GitHub

parent
8fa16f968a
commit
8bee7a0c23
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__ */
|
Reference in New Issue
Block a user