handmade/include/lib_GetOpt.h
Bubblegumdrop 60e282929f Add a "SafeUDPpacket" and "SafeUDPpacketV" class.
I'm trying to merge UDPpacketVBuffer and SafeUDPpacketV.

Seems pretty messy so far... hopefully this is fruitful.
2022-01-16 14:40:20 -05:00

12 lines
160 B
C

#pragma once
struct Init_CommonOpts
{
const char* host;
int channel;
int mtu;
unsigned short port;
};
void common_GetOpt (int, char**, Init_CommonOpts*);