19 lines
218 B
C
19 lines
218 B
C
|
|
/*
|
||
|
|
* File: main.c
|
||
|
|
* Author: Sebastian H. Gabrielli
|
||
|
|
*
|
||
|
|
* Created on March 6, 2024, 12:34 PM
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
/*
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
int main(int argc, char** argv) {
|
||
|
|
|
||
|
|
return (EXIT_SUCCESS);
|
||
|
|
}
|
||
|
|
|