Home
last modified time | relevance | path

Searched refs:my_wcsdup (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/ctypes/test/
Dtest_slicing.py134 dll.my_wcsdup.restype = POINTER(c_wchar)
135 dll.my_wcsdup.argtypes = POINTER(c_wchar),
137 res = dll.my_wcsdup(s[:-1])
149 dll.my_wcsdup.restype = POINTER(c_short)
151 dll.my_wcsdup.restype = POINTER(c_int)
153 dll.my_wcsdup.restype = POINTER(c_long)
156 res = dll.my_wcsdup(s[:-1])
/third_party/python/Modules/_ctypes/
D_ctypes_test.c382 EXPORT(wchar_t *) my_wcsdup(wchar_t *src) in my_wcsdup() function