|
XINU
|
C言語標準ライブラリ(Glibc)相当のXINUライブラリ
More...
Files | |
| file | abs.c [code] |
| 整数(int型)の絶対値を返す。 | |
| file | atoi.c [code] |
| ASCII文字列をint型の整数に変換する。 | |
| file | atol.c [code] |
| ASCII文字列をlong型の実数に変換する。 | |
| file | bzero.c [code] |
| Byteブロック領域の先頭N bytesを数値ゼロで埋める。 | |
| file | ctype_.c [code] |
| 「文字種類の判定」や「文字変換」の際に使用するビットマスク配列を定義する。 | |
| file | doprnt.c [code] |
| file | doscan.c [code] |
| file | fdoprnt.c [code] |
| file | fgetc.c [code] |
| デバイス(ファイル)から文字を読み込む。 | |
| file | fgets.c [code] |
| デバイス(ファイル)から文字列を読み込む。 | |
| file | fprintf.c [code] |
| file | fputc.c [code] |
| 文字をデバイス(ファイル)に書き込む。 | |
| file | fputs.c [code] |
| 文字列をデバイス(ファイル)に書き込む。 | |
| file | fscanf.c [code] |
| file | getchar.c [code] |
| STDIN(標準入力)から文字を読み込む。 | |
| file | labs.c [code] |
| 実数(long型)の絶対値を返す。 | |
| file | memchr.c [code] |
| 文字をNバイト中から検索する(本ファイルは空のため、何も提供しない)。 | |
| file | memcmp.c [code] |
| Byteブロック2個に対して、先頭からN Byte分比較する。 | |
| file | memcpy.c [code] |
| メモリAの領域(source)からメモリBの領域(Destination)にN Byteコピーする。 | |
| file | memset.c [code] |
| 指定のByteブロックに対して、同じ値をNバイト分書き込む。 | |
| file | printf.c [code] |
| file | putchar.c [code] |
| file | qsort.c [code] |
| file | rand.c [code] |
| 疑似乱数を返す。 | |
| file | sprintf.c [code] |
| file | sscanf.c [code] |
| 文字列strを書式formatに従って読み込み、指定されたアドレスに格納する。 | |
| file | strchr.c [code] |
| 指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。 | |
| file | strcmp.c [code] |
| 二つの文字列を比較し、その結果を返す。 | |
| file | strcpy.c [code] |
| 文字列Aに文字列Bをコピーする。 | |
| file | strlen.c [code] |
| NULL終端された文字列の長さを返す。NULL終端は長さに含まない。 | |
| file | strncat.c [code] |
| 文字列s1の末尾に文字列s2をN文字(Byte)分、結合する。 | |
| file | strncmp.c [code] |
| 二つの文字列を最大N byteまで比較し、その結果を返す。 | |
| file | strncpy.c [code] |
| 文字列s1に文字列s2をN文字(Byte)分コピーする。 | |
| file | strnlen.c [code] |
| NULL終端された文字列の長さを返す。 | |
| file | strrchr.c [code] |
| 指定された文字を文字列から探し、最後に見つかった位置をポインタで返す。 | |
| file | strstr.c [code] |
| 検索対象の文字列Aから文字列Bを探す。 | |
C言語標準ライブラリ(Glibc)相当のXINUライブラリ
1.8.13