Organize cmdline util.

This commit is contained in:
Christian Deacon
2025-02-22 11:41:48 -05:00
parent 060aafbaf5
commit e3b1f04c11
2 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,4 @@
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include "cmdline.h"
#include <loader/utils/cmdline.h>
const struct option opts[] =
{

View File

@@ -1,5 +1,9 @@
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
struct cmdline
{
char *cfgfile;