1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00

chore: prefix all #define for includes with LIBCPROJECT

This commit is contained in:
Théo LUDWIG 2023-06-25 15:14:06 +02:00
parent 5f60abc759
commit 682997c0a5
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
12 changed files with 24 additions and 24 deletions

View File

@ -1,5 +1,5 @@
#ifndef __ARRAY_LIST__ #ifndef __LIBCPROJECT_ARRAY_LIST__
#define __ARRAY_LIST__ #define __LIBCPROJECT_ARRAY_LIST__
#include <stdbool.h> #include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __CHARACTER__ #ifndef __LIBCPROJECT_CHARACTER__
#define __CHARACTER__ #define __LIBCPROJECT_CHARACTER__
#include <stdbool.h> #include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __CONVERT__ #ifndef __LIBCPROJECT_CONVERT__
#define __CONVERT__ #define __LIBCPROJECT_CONVERT__
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __DICTIONARY__ #ifndef __LIBCPROJECT_DICTIONARY__
#define __DICTIONARY__ #define __LIBCPROJECT_DICTIONARY__
#include <stdbool.h> #include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __FILESYSTEM__ #ifndef __LIBCPROJECT_FILESYSTEM__
#define __FILESYSTEM__ #define __LIBCPROJECT_FILESYSTEM__
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>

View File

@ -1,5 +1,5 @@
#ifndef __LINKED_LIST__ #ifndef __LIBCPROJECT_LINKED_LIST__
#define __LINKED_LIST__ #define __LIBCPROJECT_LINKED_LIST__
#include <stdbool.h> #include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __MATHEMATICS__ #ifndef __LIBCPROJECT_MATHEMATICS__
#define __MATHEMATICS__ #define __LIBCPROJECT_MATHEMATICS__
#define MATHEMATICS_FLOAT_PRECISION 0.00000001 #define MATHEMATICS_FLOAT_PRECISION 0.00000001

View File

@ -1,5 +1,5 @@
#ifndef __QUEUE__ #ifndef __LIBCPROJECT_QUEUE__
#define __QUEUE__ #define __LIBCPROJECT_QUEUE__
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __STACK__ #ifndef __LIBCPROJECT_STACK__
#define __STACK__ #define __LIBCPROJECT_STACK__
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,5 @@
#ifndef __STRING__ #ifndef __LIBCPROJECT_STRING__
#define __STRING__ #define __LIBCPROJECT_STRING__
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>

View File

@ -1,5 +1,5 @@
#ifndef __TERMINAL__ #ifndef __LIBCPROJECT_TERMINAL__
#define __TERMINAL__ #define __LIBCPROJECT_TERMINAL__
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>

View File

@ -1,5 +1,5 @@
#ifndef __TYPES__ #ifndef __LIBCPROJECT_TYPES__
#define __TYPES__ #define __LIBCPROJECT_TYPES__
#include <stdint.h> #include <stdint.h>