מידע

יוצרים Mathieu Xhonneux & Cyril Pletinckx
מועד הגשה אין מועד הגשה
מגבלת הגשות אין הגבלה
תגיות קטגוריה S2, Level 2, String

תגיות

כניסה

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