aboutsummaryrefslogtreecommitdiff
path: root/src/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.c')
-rw-r--r--src/cli.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/cli.c b/src/cli.c
deleted file mode 100644
index 138410f..0000000
--- a/src/cli.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include<stdio.h>
-#include "razerdevice.h"
-#include "razerkbd_driver.h"
-
-int main(int argc, const char * argv[]) {
-
- IOUSBDeviceInterface **dev = getRazerUSBDeviceInterface(0);
- printf("Getting Razer usb device\n");
-
- if (dev == NULL) {
- printf("No device found\n");
- return -1; // Assume appropriate error message displayed during the lookup
- }
-
- return 0;
-
-}