This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.h
68 lines (60 loc) · 2.56 KB
/
test.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* test.h
*
* Copyright (C) 2018 - Ivan Avalos
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
typedef struct something
{
char* some_a;
char some_b;
} something_t;
typedef struct something_awesome
{
char* some_awesome_a;
char* some_awesome_b;
} something_awesome_t;
void init_rng ();
void init_fake_sh ();
void terminate_fake_sh ();
void init_win_ ();
void end_win ();
void xgetch ();
char* read_string_from_file (char* filename);
something_t* do_something_with_something (char* thing);
char* something_extract_some_a (something_t* something);
char something_extract_some_b (something_t* something);
void something_do_something (something_t* something);
void undo_something_with_some_something
(something_t* something);
something_awesome_t* do_something_awesome_with_some_something
(something_t* something);
char* something_awesome_extract_some_awesome_a
(something_awesome_t* something_awesome);
char* something_awesome_extract_some_awesome_b
(something_awesome_t* something_awesome);
void something_awesome_do_something_awesome
(something_awesome_t* something_awesome);
void undo_something_awesome_with_some_something_awesome
(something_awesome_t* something_awesome);
/* Window params */
WINDOW *local_win;
int height;
int width;
int startx;
int starty;
/*const char* thing =
"Cuando despertó, el dinosaurio todavía estaba allí"; */
char* thing = NULL;