typedef struct queue *Pqueue; Pqueue createE(int lenChar); Pqueue createEEmpty(); //create a new element but all variables in are null, use to create the first element of the queue in the main before define the elements in // seter /getter pour la struct // constructeur avec 2 paramètres : strlen et tabchar Pqueue getNextE(Pqueue elem); Pqueue setCharLen(Pqueue elem , int _charLen); Pqueue setTabChar(Pqueue elem , int _charLen , char *_tabChar); Pqueue rmLastE(Pqueue elem); Pqueue rmFrstE(Pqueue elem); Pqueue nextDelFrst(Pqueue elem); Pqueue addLastQ(Pqueue elem, const char* str, int len); void printE(Pqueue elem);