mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 16:00:39 +01:00
10 lines
163 B
C
10 lines
163 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "02h.h"
|
|
|
|
int main() {
|
|
struct level2* level2 = fillLevel2(level2);
|
|
debugLevel2(level2);
|
|
freeLevel2(level2);
|
|
}
|