mainfclean efface les fichiers de script

This commit is contained in:
Hugo LAMY
2020-03-12 22:54:07 +01:00
parent 752542c020
commit cca3c8fb82
3 changed files with 1 additions and 52 deletions

View File

@@ -71,6 +71,6 @@ fsanitize: $(ODIR) $(OBJS) $(DEPS)
gcc:
$(CC) $(CFLAGS) main.c -L. -lftprintf
mainfclean: fclean
/bin/rm -f out*.txt a.out
/bin/rm -f out*.txt a.out temoin.txt exemple.txt
.PHONY: all clean fclean re lib cleanlib main fsanitize mainfclean gcc

View File

@@ -1,30 +0,0 @@
("%+d", 12) : '+12' [3]
HO HO.. : '12' [2]
("%+d", -12) : '-12' [3]
JACKPOT : '-12' [3]
("%+i", 12) : '+12' [3]
HO HO.. : '12' [2]
("%+i", -12) : '-12' [3]
JACKPOT : '-12' [3]
("%+05i", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
("%05i", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
("%07.5i", -12) : ' -00012' [7]
JACKPOT : ' -00012' [7]
----------------------------------------------------------------
% flags width .precision length specifier
% 0-#' + * 0..9 .* 0..9 hhhlllLjtz diuxXcsp%efgnEFGaACSo
% 0- * 0..9 .* 0..9 diuxXcsp%
% #' + hhhlll efgn
----------------------------------------------------------------
2 ERRORS

View File

@@ -1,21 +0,0 @@
("%+d", 12) : '+12' [3]
HO HO.. : '12' [2]
("%+d", -12) : '-12' [3]
JACKPOT : '-12' [3]
("%+05d", 12) : '+0012' [5]
HO HO.. : '00012' [5]
("%+05d", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
----------------------------------------------------------------
% flags width .precision length specifier
% 0-#' + * 0..9 .* 0..9 hhhlllLjtz diuxXcsp%efgnEFGaACSo
% 0- * 0..9 .* 0..9 diuxXcsp%
% #' + hhhlll efgn
----------------------------------------------------------------
2 ERRORS