#include #include #include "hms.h" #include "formater.h" int main(int argc, char *argv[]) { int heures; int minutes; int secondes; char *symbole; hms(&heures, &minutes, &secondes); symbole = formater(String, argv[0], String, "_", Int, heures, String, "_", Int, minutes, String, "_", Int, secondes, Eop); printf("Symbole produit: \"%s\"\n", symbole); free(symbole); return EXIT_SUCCESS; }