-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_define.h
34 lines (28 loc) · 1.41 KB
/
ft_define.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_define.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgalaup <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/28 10:03:44 by fgalaup #+# #+# */
/* Updated: 2021/01/24 14:06:08 by fgalaup ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef FT_DEFINE_H
# define FT_DEFINE_H
/*
** =============================================================================
** GENERIC BUFFER SIZE
** =============================================================================
*/
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 64
# endif
/*
** =============================================================================
** MATH
** =============================================================================
*/
# define PI 3.1415926535897932384626433832795028841971
#endif