diff options
| author | ame <[email protected]> | 2024-02-26 12:04:08 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2024-02-26 12:04:08 -0600 |
| commit | 764dea6ddb8fb8f164858426d755afc33b3a2f1d (patch) | |
| tree | 2d857a0d8da93dec15d20bfc8b604a588edc33b2 /src/types/str.h | |
| parent | 5b4853a1b0599980f94e7459d522cfad8b4b5833 (diff) | |
content-disposition
Diffstat (limited to 'src/types/str.h')
| -rw-r--r-- | src/types/str.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types/str.h b/src/types/str.h index 60b0cb9..ccf379f 100644 --- a/src/types/str.h +++ b/src/types/str.h @@ -1,3 +1,6 @@ +#ifndef __STR_H +#define __STR_H + #include <string.h> #include <stdio.h> #include <stdlib.h> @@ -13,3 +16,5 @@ void str_free(str*); void str_push(str*, char*); void str_pushl(str*, char*, size_t); void str_clear(str*); + +#endif //__STR_H
\ No newline at end of file |
