aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2022-11-17 12:36:12 +0100
committerThomas Voss <mail@thomasvoss.com> 2022-11-17 12:36:12 +0100
commit5eece7e783e177e6fcf7ed4a7185d180f9fc5565 (patch)
tree20c2c866c9fbf14e23ceb6d204d6264d8c33552c
parent63ad1fe1902222d923ba407ce891974df9ccdd0b (diff)
Use LIBLUX_ as a macro prefix
-rw-r--r--src/common.h6
-rw-r--r--src/lux.h8
-rw-r--r--src/luxinit.c10
3 files changed, 12 insertions, 12 deletions
diff --git a/src/common.h b/src/common.h
index a7739c2..7b1aff6 100644
--- a/src/common.h
+++ b/src/common.h
@@ -15,8 +15,8 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#ifndef LUX_COMMON_H
-#define LUX_COMMON_H
+#ifndef LIBLUX_COMMON_H
+#define LIBLUX_COMMON_H
#ifdef __cplusplus
extern "C" {
@@ -28,4 +28,4 @@ FILE *getbstream(int);
}
#endif
-#endif /* !LUX_COMMON_H */
+#endif /* !LIBLUX_COMMON_H */
diff --git a/src/lux.h b/src/lux.h
index 8473081..2e83f5d 100644
--- a/src/lux.h
+++ b/src/lux.h
@@ -15,12 +15,12 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#ifndef LUX_H
-#define LUX_H
+#ifndef LIBLUX_LUX_H
+#define LIBLUX_LUX_H
#include <stdio.h>
-#define LUX_BACKLIGHT_DIR "/sys/class/backlight"
+#define LIBLUX_BACKLIGHT_DIR "/sys/class/backlight"
#ifdef O_PATH
#define LUX_GDIR_FLAGS O_PATH
#else
@@ -54,4 +54,4 @@ double luxdecp(lux_t *, double);
}
#endif
-#endif /* !LUX_H */
+#endif /* !LIBLUX_LUX_H */
diff --git a/src/luxinit.c b/src/luxinit.c
index 949f3a2..55151b4 100644
--- a/src/luxinit.c
+++ b/src/luxinit.c
@@ -48,14 +48,14 @@ getdir(void)
DIR *dir;
/* To get the file descriptor for the directory where all the brightness
- * files are located, we first need to open LUX_BACKLIGHT_DIR which is
- * the directory where the backlight directories are located. Then we
- * need to get a DIR* of that directory and get the 3rd entry. We need
- * the third because the fist and second are the . and .. folders.
+ * files are located, we first need to open LIBLUX_BACKLIGHT_DIR which
+ * is the directory where the backlight directories are located. Then
+ * we need to get a DIR* of that directory and get the 3rd entry. We
+ * need the third because the fist and second are the . and .. folders.
* Finally we open the folder so that we have a file descriptor we can
* return.
*/
- if ((dfd = open(LUX_BACKLIGHT_DIR, O_RDONLY)) == -1)
+ if ((dfd = open(LIBLUX_BACKLIGHT_DIR, O_RDONLY)) == -1)
return -1;
if ((dir = fdopendir(dfd)) == NULL) {
close(dfd);