handmade/include/util.h

14 lines
259 B
C
Raw Normal View History

#pragma once
2022-01-04 09:05:11 -05:00
#include <string>
#include <stddef.h> /* size_t */
2022-01-04 09:05:11 -05:00
#include <SDL_net.h>
int IsProbablyAscii (const void *, const size_t);
void HexDump (const void *, const size_t);
2022-01-04 09:05:11 -05:00
void UDP_DumpPacket (UDPpacket*);
std::string HostAddress (IPaddress*);