Skip to content

Instantly share code, notes, and snippets.

View TymianekPL's full-sized avatar
❤️
Hello!

Tymianek TymianekPL

❤️
Hello!
  • Tymianek
View GitHub Profile
@TymianekPL
TymianekPL / main.c
Created April 18, 2022 10:53
Gist for "How to make your own protocol" video (https://youtu.be/X8mzTqV58-U)
#include <stdio.h>
#include <string.h>
#include <Windows.h>
int main(int argc, char **argv)
{
if(argc != 2)
{
printf("That command requried 1 argument");
return 1;