You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
191 B
C

#pragma once
#include <stdint.h>
struct app_args
{
uint16_t port;
char* addr;
};
struct app_args* app_args_new( int argc, char** argv );
void app_args_release( struct app_args* args );