diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:36:12 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:36:12 +0100 | 
| commit | 5eece7e783e177e6fcf7ed4a7185d180f9fc5565 (patch) | |
| tree | 20c2c866c9fbf14e23ceb6d204d6264d8c33552c | |
| parent | 63ad1fe1902222d923ba407ce891974df9ccdd0b (diff) | |
Use LIBLUX_ as a macro prefix
| -rw-r--r-- | src/common.h | 6 | ||||
| -rw-r--r-- | src/lux.h | 8 | ||||
| -rw-r--r-- | src/luxinit.c | 10 | 
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 */ @@ -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); |