Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wcsdup(3) [linux man page]

WCSDUP(3)						     Linux Programmer's Manual							 WCSDUP(3)

NAME
wcsdup - duplicate a wide-character string SYNOPSIS
#include <wchar.h> wchar_t *wcsdup(const wchar_t *s); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): wcsdup(): Since glibc 2.10: _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L Before glibc 2.10: _GNU_SOURCE DESCRIPTION
The wcsdup() function is the wide-character equivalent of the strdup(3) function. It allocates and returns a new wide-character string whose initial contents is a duplicate of the wide-character string pointed to by s. Memory for the new wide-character string is obtained with malloc(3), and should be freed with free(3). RETURN VALUE
The wcsdup() function returns a pointer to the new wide-character string, or NULL if sufficient memory was not available. ERRORS
ENOMEM Insufficient memory available to allocate duplicate string. CONFORMING TO
POSIX.1-2008. This function is not specified in POSIX.1-2001, and is not widely available on other systems. SEE ALSO
strdup(3), wcscpy(3), feature_test_macros(7) COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2010-09-15 WCSDUP(3)

Check Out this Related Man Page

WCSDUP(3)						     Linux Programmer's Manual							 WCSDUP(3)

NAME
wcsdup - duplicate a wide-character string SYNOPSIS
#include <wchar.h> wchar_t *wcsdup(const wchar_t *s); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): wcsdup(): Since glibc 2.10: _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L Before glibc 2.10: _GNU_SOURCE DESCRIPTION
The wcsdup() function is the wide-character equivalent of the strdup(3) function. It allocates and returns a new wide-character string whose initial contents is a duplicate of the wide-character string pointed to by s. Memory for the new wide-character string is obtained with malloc(3), and should be freed with free(3). RETURN VALUE
The wcsdup() function returns a pointer to the new wide-character string, or NULL if sufficient memory was not available. ERRORS
ENOMEM Insufficient memory available to allocate duplicate string. CONFORMING TO
POSIX.1-2008. This function is not specified in POSIX.1-2001, and is not widely available on other systems. SEE ALSO
strdup(3), wcscpy(3) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2010-09-15 WCSDUP(3)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

How to make static unicode string?

In Windows, wchar_t *pStr = L"Hello"; works, but I can't find the equivalent to Unix system. How can I make static stack-memory-based wide character string in C in Unix? (1 Reply)
Discussion started by: sledge76
1 Replies

2. UNIX for Dummies Questions & Answers

Some questions - renaming duplicate names

I have a file that looks like this 2 4 10 500 tim9 5 8 14 700 tim9 3 5 15 432 john1 1 4 12 999 ellen2 So basically what i want to do is fine duplicate names on column 5 and rename it with an extention (i.e. tim9_1 and tim9_2). so the output file will look like this 2 4 10 500 tim9_1... (1 Reply)
Discussion started by: kylle345
1 Replies

3. UNIX for Dummies Questions & Answers

Duplicates

Hi, How to eliminate the duplicate values in unix? I have a excel file which contains duplicate values. Need to use this in a script. Thanks in advance. (3 Replies)
Discussion started by: venkatesht
3 Replies

4. Shell Programming and Scripting

How to find duplicate line in Linux?

Hi, Gurus, I need find the duplicate record in unix file. what command I should use for this. Thanks in advance (4 Replies)
Discussion started by: ken6503
4 Replies

5. UNIX for Advanced & Expert Users

Find duplicate words using sed

I have following statement and I want to find duplicate word using sed command. How is it possible? "detect string and remove the duplicate string" There could be many statements in a file and each line may have duplicate word. Thanks! (1 Reply)
Discussion started by: jnrohit2k
1 Replies

6. UNIX for Beginners Questions & Answers

Remove duplicate email

cat path/to/dir/file.html | grep -i 'x*.com' > path/to/dir/file.txt Before xyz.com xyz.com After cat path/to/dir/file.html | grep -i 'x*.com' | sed '$!s/$/,/' | tr -d '\n'> path/to/dir/file.txt Result --> Preferred output: xyz.com, xyz.com The preferred is the exact output I... (9 Replies)
Discussion started by: lpoolfc
9 Replies