source: EcnlProtoTool/trunk/ntshell/ntshell/core/ntlibc.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 2.2 KB
Line 
1/**
2 * @file ntlibc.h
3 * @author CuBeatSystems
4 * @author Shinichiro Nakamura
5 * @copyright
6 * ===============================================================
7 * Natural Tiny Shell (NT-Shell) Version 0.3.1
8 * ===============================================================
9 * Copyright (c) 2010-2016 Shinichiro Nakamura
10 *
11 * Permission is hereby granted, free of charge, to any person
12 * obtaining a copy of this software and associated documentation
13 * files (the "Software"), to deal in the Software without
14 * restriction, including without limitation the rights to use,
15 * copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following
18 * conditions:
19 *
20 * The above copyright notice and this permission notice shall be
21 * included in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
25 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
30 * OTHER DEALINGS IN THE SOFTWARE.
31 */
32
33#ifndef NTLIBC_H
34#define NTLIBC_H
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40int ntlibc_strlen(const char *s);
41char *ntlibc_strcpy(char *des, const char *src);
42int ntlibc_strlcpy(char *des, const char *src, int n);
43char *ntlibc_strcat(char *des, const char *src);
44int ntlibc_strlcat(char *des, const char *src, int n);
45int ntlibc_strcmp(const char *s1, const char *s2);
46int ntlibc_stricmp(const char *s1, const char *s2);
47int ntlibc_strncmp(const char *s1, const char *s2, int n);
48int ntlibc_isdigit(int c);
49int ntlibc_isalpha(int c);
50int ntlibc_iscntrl(int c);
51int ntlibc_toupper(int c);
52int ntlibc_tolower(int c);
53int ntlibc_atoi(const char *nptr);
54unsigned long ntlibc_strtoul(const char *__restrict nptr, char **__restrict endptr, int base);
55char *ntlibc_strchr(const char *s, int c);
56char *ntlibc_utoa(unsigned int value, char *s, int radix);
57
58#ifdef __cplusplus
59}
60#endif
61
62#endif
63
Note: See TracBrowser for help on using the repository browser.