aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.h
blob: e7e48ab812f0722aecd27869ba7bf0ac14ecccb7 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   tests.h                                            :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/06 18:15:44 by cacharle          #+#    #+#             */
/*   Updated: 2020/02/06 18:15:46 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef FT_PRINTF_TEST_TESTS_H
# define FT_PRINTF_TEST_TESTS_H

void test_pft_nacked(void);
void test_pft_percent(void);
void test_pft_nocrash(void);
void test_pft_string(void);
void test_pft_int_i(void);
void test_pft_int_d(void);
void test_ptf_uint(void);
void test_ptf_hex_low(void);
void test_ptf_hex_up(void);
void test_pft_ptr(void);
void test_pft_char(void);

void test_moulitest_00(void);
void test_moulitest_01(void);
void test_moulitest_02(void);
void test_moulitest_03(void);
void test_moulitest_04(void);
void test_moulitest_05(void);
void test_moulitest_06(void);
void test_moulitest_09(void);
void test_moulitest_12(void);
void test_moulitest_14(void);
void test_moulitest_15(void);
void test_moulitest_16(void);
void test_moulitest_18(void);
void test_moulitest_40(void);
void test_moulitest_41(void);
void test_moulitest_42(void);
void test_moulitest_43(void);
void test_moulitest_45(void);
void test_moulitest_50(void);
void test_moulitest_51(void);
void test_moulitest_52(void);
void test_moulitest_60(void);
void test_moulitest_61(void);
void test_moulitest_69(void);
void test_moulitest_70(void);
void test_moulitest_71(void);
void test_moulitest_72(void);
void test_moulitest_73(void);
void test_moulitest_74(void);
void test_moulitest_79(void);
void test_moulitest_90(void);
void test_moulitest_91(void);
void test_moulitest_wildcard_01(void);
void test_moulitest_wildcard_02(void);
void test_moulitest_wildcard_03(void);

void test_printf_tester(void);

void test_printf_tests_test(void);

#endif