次の表は、文字列とブロックのコピーを行う組み込み関数のリストです。これらの組み込み関数は、すべてのインテル(R) アーキテクチャーで使用できます。
ただし、IA-64 アーキテクチャー上では組み込み関数としてサポートしていません。
組み込み関数 | 説明 |
---|---|
char *_strset(char *, _int32) | 文字列のすべての文字を固定値に設定します。 |
int memcmp(const void *cs, const void *ct, size_t n) | メモリーの 2 つの領域を比較します。cs < ct の場合は < 0、cs = ct の場合は 0、cs > ct の場合は > 0 を返します。 |
void *memcpy(void *s, const void *ct, size_t n) | メモリーからコピーします。s を返します。 |
void *memset(void * s, int c, size_t n) | メモリーを固定値に設定します。s を返します。 |
char *strcat(char * s, const char * ct) | 文字列に追加します。s を返します。 |
int strcmp(const char *, const char *) | 2 つの文字列を比較します。cs < ct の場合は < 0、cs = ct の場合は 0、cs > ct の場合は > 0 を返します。 |
char *strcpy(char * s, const char * ct) | 文字列をコピーします。s を返します。 |
size_t strlen(const char * cs) | 文字列 cs の長さを返します。 |
int strncmp(char *, char *, int) | 指定した文字数だけ、2 つの文字列を比較します。 |
int strncpy(char *, char *, int) | 指定した文字数だけ、文字列をコピーします。 |