wcscmp(3) Library Functions Manual wcscmp(3) NOMBRE wcscmp - compara dos cadenas de caracteres anchos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include int wcscmp(const wchar_t *s1, const wchar_t *s2); DESCRIPCION La funcion wcscmp() es el equivalente de caracteres anchos de la funcion strcmp(3). Compara la cadena de caracteres anchos a la que apunta s1 y la cadena de caracteres anchos apuntada por s2. VALOR DEVUELTO The wcscmp() function returns zero if the wide-character strings at s1 and s2 are equal. It returns an integer greater than zero if at the first differing position i, the corresponding wide-character s1[i] is greater than s2[i]. It returns an integer less than zero if at the first differing position i, the corresponding wide-character s1[i] is less than s2[i]. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcscmp() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C99. VEASE TAMBIEN strcmp(3), wcscasecmp(3), wmemcmp(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Pedro Pablo Fabrega y Juan Piernas Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 wcscmp(3)