-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode.c
49 lines (43 loc) · 981 Bytes
/
code.c
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
40
41
42
43
44
45
46
47
48
49
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
char win[] = "YAY!";
char lose[] = "Nope!";
void print_data( char* data, int len) {
for( int x = 0; x <= len; x++ )
{
printf("%c", data[x]);
}
}
char* check_value(int random) {
char buffer[20];
char *output = lose;
int check;
int input_length;
printf("Location of the buffer %p\n", buffer);
printf("\nWhat's your guess? \n> ");
input_length = read(STDIN_FILENO, buffer, 1024);
printf("Your input: ");
print_data( buffer, input_length );
check = atoi(buffer);
if(check == random) {
output = win;
}
return output;
}
void main()
{
gid_t egid = getegid();
setregid(egid, egid);
int r = rand() % 10;
char* output;
printf("Can you guess the number?\n");
while(1) {
output = check_value(r);
printf("\n--- %s ---\n", output);
if( output == win )
{
break;
}
}
}