WCSDUP
Section: Linux Programmer's Manual (3)
Updated: 2003-11-01
Index
JM Home Page
roff page
名前
wcsdup - ワイド文字文字列を複製する
書式
#define _GNU_SOURCE
#include <wchar.h>
wchar_t *wcsdup(const wchar_t *s);
説明
wcsdup()
関数は、
strdup(3)
関数のワイド文字版である。
この関数はポインタ s が指し示すワイド文字文字列の複製を
新しい領域に割り当てて返す。
新しいワイド文字文字列のためのメモリは
malloc(3)
を使って割り当てられる。
この領域は
free(3)
を使って解放できる。
返り値
wcsdup()
関数は、新しいワイド文字文字列へのポインタを返す。
十分なメモリがなければ NULL を返す。
エラー
- ENOMEM
-
複製文字列を割り当てるのに十分なメモリがない。
準拠
この関数は GNU による拡張である。
関連項目
strdup(3),
wcscpy(3),
feature_test_macros(7)
Index
- 名前
-
- 書式
-
- 説明
-
- 返り値
-
- エラー
-
- 準拠
-
- 関連項目
-
This document was created by
man2html,
using the manual pages.
Time: 04:32:11 GMT, November 19, 2007