XINU
|
二つの文字列を最大N byteまで比較し、その結果を返す。 More...
Go to the source code of this file.
Functions | |
int | strncmp (char *s1, char *s2, int n) |
二つの文字列を最大N byteまで比較し、その結果を返す。 More... | |
二つの文字列を最大N byteまで比較し、その結果を返す。
Definition in file strncmp.c.
int strncmp | ( | char * | s1, |
char * | s2, | ||
int | n | ||
) |
二つの文字列を最大N byteまで比較し、その結果を返す。
[in] | s1 | 比較対象の文字列その1 |
[in] | s2 | 比較対象の文字列その2 |
[in] | n | 比較するByte数(最大Byte) |