20 lines
993 B
C++
20 lines
993 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* config.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/22 09:45:10 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/22 09:46:42 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef __CONFIG__
|
|
#define __CONFIG__
|
|
|
|
#define INPUT_SIZE 1024
|
|
#define LOGS_BUFFER_SIZE 4096
|
|
|
|
#endif
|