Restructure project and organize code.

This commit is contained in:
Christian Deacon
2025-02-22 09:50:57 -05:00
parent e3d47fda6f
commit 8756892791
25 changed files with 403 additions and 334 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
struct cmdline
{
char *cfgfile;
unsigned int offload : 1;
unsigned int skb : 1;
unsigned int time;
unsigned int list : 1;
unsigned int help : 1;
};
void ParseCommandLine(struct cmdline *cmd, int argc, char *argv[]);