This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
mifare-classic-editor/include/readFile.h

13 lines
161 B
C
Raw Normal View History

2023-12-16 03:08:59 -03:00
#include <stdio.h>
#include "colors.h"
#pragma once
typedef struct {
int start;
int end;
const char* color;
} ColorRange;
void readFile(FILE *file);