Rename argparse.* to options.*
Seems to be a more appropriate name. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
d2cc4e0243
commit
ee2be09958
|
@ -39,7 +39,7 @@
|
|||
#ifdef CONFIG_DBUS
|
||||
#include "dbus.h"
|
||||
#endif
|
||||
#include "argparse.h"
|
||||
#include "options.h"
|
||||
|
||||
#define auto __auto_type
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ deps = [
|
|||
|
||||
srcs = [ files('compton.c', 'win.c', 'c2.c', 'x.c', 'config.c', 'vsync.c', 'utils.c',
|
||||
'diagnostic.c', 'string_utils.c', 'render.c', 'kernel.c', 'log.c',
|
||||
'argparse.c')]
|
||||
'options.c')]
|
||||
|
||||
cflags = []
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include <stdbool.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "argparse.h"
|
||||
#include "options.h"
|
||||
#include "common.h"
|
||||
#include "config.h"
|
||||
|
Loading…
Reference in New Issue