-
Notifications
You must be signed in to change notification settings - Fork 0
/
clas.h
51 lines (30 loc) · 779 Bytes
/
clas.h
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
50
51
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
struct myPets {char * name;char * breed;char * background; int experience; int friendliness; int obedience; int strength;};
struct myPets dog;
char* pickBreed(char * input);
char * description();
void interaction();
void namegen(char * input);
int userAction(char * input);
void printName();
int saveProgress();
int loadProgress();
struct myPets firstPet(char * input);
struct myPets secondPet();
void reachStats();
void changeName(char *newName);
void goodBoy();
void about();
int findLength( char * str);
void dogRun();
void leaderboard();
void viewLeader();
void process(char * s);