#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct s_String {
//Notre chaine
char *str;

//Nos Methodes
size_t (*length)(struct s_String *this);