From 4d797a9854ce2b2adebe66361eed6bc0f96fc61e Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Thu, 22 Feb 2024 19:20:26 +0300 Subject: [PATCH] C: pure_getline.h: move include statements --- c-programming/io/pure_getline.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c-programming/io/pure_getline.h b/c-programming/io/pure_getline.h index 6fcf5c7..943f85d 100644 --- a/c-programming/io/pure_getline.h +++ b/c-programming/io/pure_getline.h @@ -5,14 +5,14 @@ * License: Creative Commons Zero 1.0 Universal */ +#ifndef _PURE_GETLINE_H +#define _PURE_GETLINE_H + #include #include #include #include -#ifndef _PURE_GETLINE_H -#define _PURE_GETLINE_H - bool pure_getline(char** output); #endif /* _PURE_GETLINE_H */