-
Notifications
You must be signed in to change notification settings - Fork 0
/
libprintftest.h
41 lines (35 loc) · 1.38 KB
/
libprintftest.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libprintftest.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: phkevin <phkevin@42luxembourg.lu> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/29 11:17:18 by phkevin #+# #+# */
/* Updated: 2024/06/23 19:47:00 by phkevin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBPRINTFTEST_H
# define LIBPRINTFTEST_H
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "../libft_printf.h"
/* Color MSG*/
# define NOCOLORS "\033[0m"
# define RED "\033[1;31m"
# define GREEN "\033[1;32m"
# define YELLOW "\033[0;93m"
# define GOLD "\033[1;33m"
# define BLUE "\033[1;34m"
# define MAGENTA "\033[1;35m"
# define CYAN "\033[1;36m"
#define LINE_LENGTH 2048
/*
* FONCTION ft_fic
*/
int sortfic1(void);
int sortfic2(void);
int comptfic(void);
#endif