app dir changed and src dir removed

This commit is contained in:
2025-02-16 17:37:56 +01:00
parent 4f6cd20130
commit f3c2569a30
22 changed files with 88 additions and 58 deletions

20
bs/args.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef _ARGS_H
#define _ARGS_H
// #define MAX_LINE 1024
// #define MAX_ARGS 16
// #define MAX_COMMANDS 16
// #define MAX_PATH 1024
// struct args {
// int list;
// int probe;
// char bsdl[MAX_PATH];
// int devid;
// enum commands cmds[MAX_COMMANDS];
// };
// int parse_args(struct args *a, int argc, char *argv[]);
void parse_command(char *line, int *argc, char **argv);
#endif