Oé c'est l'idée ^^
Faudrait que ca me genere un truc du genre : "v0.1.0.1 tralali tralala"
Mais j'ai l'impression de m'etre planté dans mes "stringifications", je vais verifier tout ca
Ah! Mais avant; histoire que je comprenne bien ce que je fais :
#define STR1 "toto"
#define STR2 " tati"
#define str(x,y) xstr(x,y)
#define xstr(x,y) x ## y
#define STR_GEN str( STR1, STR2)
STR_GEN vaudra :
- "toto tati" (je pencherai pour ce resultat)
- ou ""toto"" tati"" ?
Edit > Tout compte fait non : ca genererai plutot (a mon avis) ""toto"" tati"" j'ai l'impression...