aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-09-17 19:03:15 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-09-17 19:03:15 +0300
commit3d27a4f8f8de8d5ec1d59b24ea8607f7ce450fe4 (patch)
tree950d717b299bb1105f68af52080b57e3c017b389
parenta14bbfa1ff411a4dc1b2b1935fbab4cc7f0c18f1 (diff)
downloadmagi-3d27a4f8f8de8d5ec1d59b24ea8607f7ce450fe4.tar
magi-3d27a4f8f8de8d5ec1d59b24ea8607f7ce450fe4.tar.xz
magi-3d27a4f8f8de8d5ec1d59b24ea8607f7ce450fe4.zip
A little bit of purification. =)
-rw-r--r--src/cookie.h4
-rw-r--r--src/field.h4
-rw-r--r--src/log.h4
-rw-r--r--src/multipart.h4
-rw-r--r--src/param.h4
-rw-r--r--src/request.h4
-rw-r--r--src/urlencoded.h4
7 files changed, 14 insertions, 14 deletions
diff --git a/src/cookie.h b/src/cookie.h
index d65cbe5..b0a7fb0 100644
--- a/src/cookie.h
+++ b/src/cookie.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_COOKIE_H
-#define MAGI_INCLUDED_COOKIE_H
+#ifndef MAGI_INCLUDED_COOKIE
+#define MAGI_INCLUDED_COOKIE
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
diff --git a/src/field.h b/src/field.h
index 5d4cdb5..170dc7c 100644
--- a/src/field.h
+++ b/src/field.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_FIELD_H
-#define MAGI_INCLUDED_FIELD_H
+#ifndef MAGI_INCLUDED_FIELD
+#define MAGI_INCLUDED_FIELD
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
diff --git a/src/log.h b/src/log.h
index 153969b..0cf165f 100644
--- a/src/log.h
+++ b/src/log.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_ERROR_H
-#define MAGI_INCLUDED_ERROR_H
+#ifndef MAGI_INCLUDED_LOG
+#define MAGI_INCLUDED_LOG
void magi_log(const char *format, ...);
diff --git a/src/multipart.h b/src/multipart.h
index 3e77391..a7437eb 100644
--- a/src/multipart.h
+++ b/src/multipart.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_MULTIPART_H
-#define MAGI_INCLUDED_MULTIPART_H
+#ifndef MAGI_INCLUDED_MULTIPART
+#define MAGI_INCLUDED_MULTIPART
#include "field.h"
diff --git a/src/param.h b/src/param.h
index 31b787a..a9a5942 100644
--- a/src/param.h
+++ b/src/param.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_PARAM_H
-#define MAGI_INCLUDED_PARAM_H
+#ifndef MAGI_INCLUDED_PARAM
+#define MAGI_INCLUDED_PARAM
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
diff --git a/src/request.h b/src/request.h
index 56513da..a43ba63 100644
--- a/src/request.h
+++ b/src/request.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_REQUEST_H
-#define MAGI_INCLUDED_REQUEST_H
+#ifndef MAGI_INCLUDED_REQUEST
+#define MAGI_INCLUDED_REQUEST
#include "field.h"
diff --git a/src/urlencoded.h b/src/urlencoded.h
index aa3023e..5902a24 100644
--- a/src/urlencoded.h
+++ b/src/urlencoded.h
@@ -1,5 +1,5 @@
-#ifndef MAGI_INCLUDED_URLENCODED_H
-#define MAGI_INCLUDED_URLENCODED_H
+#ifndef MAGI_INCLUDED_URLENCODED
+#define MAGI_INCLUDED_URLENCODED
#include "field.h"