-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.c
More file actions
39 lines (31 loc) · 686 Bytes
/
Copy pathshell.c
File metadata and controls
39 lines (31 loc) · 686 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
28
29
30
31
32
33
34
35
36
37
38
39
#include "main.h"
/*
* main - Entry point
*
* Return: 0 always success
*/
int main() {
size_t len = 0;
char *buf = NULL;
int n;
int interactive = isatty(STDIN_FILENO); // Check if interactive mode
signal(SIGINT, handle_signal);
while (1) {
if (interactive) {
printf("{^_^} $ ");
fflush(stdout);
}
n = getline(&buf, &len, stdin);
if (n == -1) {
// Handle end of input in non-interactive mode
free(buf);
break;
}
if (n > 0) {
find_program(buf);
}
free(buf);
buf = NULL;
}
return 0;
}