Información

Autor(es) Mathieu Xhonneux & Cyril Pletinckx
Fecha de entrega Sin fecha de envío
Tiempo límite de envío Sin límite de envío
Etiquetas de categoría s2, level2, category_string

Etiquetas

Inicia sesión

[S2] strcasecmp

La libraire string(3) implémente un grand nombre de fonctions de manipulation des strings qui vous seront utiles lors de différents projets de programmation. Pour cette tâche, nous vous demandons de réimplémenter la fonction strcasecmp(3). N'hésitez pas à consulter la documentation.


Write the body of the function strcasecmp which returns an integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match, or be greater than s2, ignoring the cases of the characters. You don't have access to existing functions so you have to use this table.

int strcasecmp(const char *s1, const char *s2) {