forked from RT-Thread/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request RT-Thread#1147 from mysterywolf/itoa
- Loading branch information
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
# Kconfig file for package itoa | ||
menuconfig PKG_USING_POSIX_ITOA | ||
bool "Enable itoa family (not standard POSIX)" | ||
default n | ||
|
||
if PKG_USING_POSIX_ITOA | ||
|
||
config PKG_POSIX_ITOA_PATH | ||
string | ||
default "/packages/system/POSIX/itoa" | ||
|
||
config PKG_POSIX_ITOA_VER | ||
string | ||
default "latest" | ||
|
||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "itoa", | ||
"description": "itoa family for RT-Thread POSIX (not standard)", | ||
"description_zh": "itoa家族函数(非POSIX标准)", | ||
"enable": "PKG_USING_POSIX_ITOA", | ||
"keywords": [ | ||
"itoa", | ||
"POSIX" | ||
], | ||
"category": "system", | ||
"author": { | ||
"name": "Meco Man", | ||
"email": "[email protected]", | ||
"github": "mysterywolf" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/mysterywolf/itoa", | ||
"icon": "unknown", | ||
"homepage": "unknown", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/mysterywolf/itoa.git", | ||
"filename": "Null for git package", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters