tgrekov-pipex
HIVE pipex May 2024
Loading...
Searching...
No Matches
internal_types.h
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* internal_types.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2024/01/09 20:40:21 by tgrekov #+# #+# */
9/* Updated: 2024/02/12 00:46:09 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef INTERNAL_TYPES_H
14# define INTERNAL_TYPES_H
15
16typedef long t_biggest;
17typedef unsigned long t_ubiggest;
18
19#endif
long long t_biggest
Convenience typedef for largest signed type I need to handle.
unsigned long long t_ubiggest
Convenience typedef for largest unsigned type I need to handle.