-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.h
28 lines (23 loc) · 1.14 KB
/
template.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* template.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fsandel <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/30 10:35:33 by fsandel #+# #+# */
/* Updated: 2023/05/26 18:07:27 by fsandel ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef TEMPLATE_H
#define TEMPLATE_H
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define INT_MAX 2147483648
void create_hpp(int fd, char *name);
void create_cpp(int fd, char *name);
char *strjoin(char *f, char *s);
#endif