summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 19:48:41 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 19:48:41 (EDT)
commit28c0b0582844582b33ab345a7f4b95e0fa9856d8 (patch)
tree7c2819d0653d9f2684e78b40e92703fa11e7d44e /src
parent6f9fa656730b61384908e8ddbd11825eae3a92b9 (diff)
src/image.h, src/text.h: Suffix "_" to guards
Diffstat (limited to 'src')
-rw-r--r--src/image.h6
-rw-r--r--src/text.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/image.h b/src/image.h
index be3b66d..72311d2 100644
--- a/src/image.h
+++ b/src/image.h
@@ -19,8 +19,8 @@
* along with fbcon2png. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef IMAGE_H
-#define IMAGE_H
+#ifndef IMAGE_H_
+#define IMAGE_H_
#include "text.h"
@@ -45,4 +45,4 @@ image_render(struct image *image, const struct text *text,
struct image *
image_destroy(struct image **image);
-#endif /* IMAGE_H */
+#endif /* IMAGE_H_ */
diff --git a/src/text.h b/src/text.h
index 900b7bd..8e4ed2f 100644
--- a/src/text.h
+++ b/src/text.h
@@ -19,8 +19,8 @@
* along with fbcon2png. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef TEXT_H
-#define TEXT_H
+#ifndef TEXT_H_
+#define TEXT_H_
#include <stdio.h>
@@ -51,4 +51,4 @@ text_render(const struct text *text, const struct font *font, png_byte **rows);
struct text *
text_destroy(struct text **text_p);
-#endif /* TEXT_H */
+#endif /* TEXT_H_ */