Skip to content

Instantly share code, notes, and snippets.

View nestedbytes's full-sized avatar
💭
Working on open source projects

nestedbytes

💭
Working on open source projects
  • Kolkata,West Bengal,India
  • 02:44 (UTC +05:30)
View GitHub Profile
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdbool.h>
typedef enum
{
FUNC_KEYWORD,
INT,
@nestedbytes
nestedbytes / readme.md
Created July 6, 2022 12:57
Updater for a c app

So to make it work first of all make a github repo and then make a new file called "version.txt" open it and type the version of ur app then use the raw url of the file and put it here in updater.c:

system("powershell Invoke-WebRequest <url>  -OutFile C:/Windows/Temp/version.txt");

Then when u wanna update change the version.txt to another version like 1.1.0 that will cause the app to think is outdated Full github repo here https://github.com/shourgamer2/C-Updater-Win