Informações

Autores Mathieu Xhonneux & Cyril Pletinckx
Prazo de entrega Sem prazo
Limite de submissão No limitation
Category tags s2, level2, category_string

Etiquetas

Entrar

[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) {