-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
27 lines (23 loc) · 677 Bytes
/
main.c
File metadata and controls
27 lines (23 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*======================================================================
File: main.c
Project: shell
Author: ksiric <email@example.com>
Created: 2026-02-24 01:38:31
Last Modified by: ksiric
Last Modified: 2026-02-24 20:24:36
---------------------------------------------------------------------
Description:
---------------------------------------------------------------------
License:
Company:
Version: 0.1.0
======================================================================
*/
#include "shell.h"
int main( int argc, char const *argv[] ) {
(void)argc;
(void)argv;
Shell_Init();
Shell_Loop();
return 0;
}