/* // lib_string.h // // // Created by Valentin Emiya on 03/02/12. // Copyright (c) 2012 LIF. All rights reserved. */ #ifndef _lib_string_h #define _lib_string_h int string_length(char *s); void string_flip(char *s); int string_cmp(char *s1, char *s2); /* ENLEVEZ CES COMMENTAIRES LORSQUE VOUS AVEZ COMPLETE LE TYPE MANQUANT*/ /*void print_tableau_strings(̀type-à-compléter t, int N); void tri_tableau_strings(type-à-compléter t, int N); int stringlength_cmp(char *s1, char *s2); void tri_tableau_strings_bylength(type-à-compléter t, int N);*/ #endif