jazykc  2013.3
upoljazykc
 All Classes Files Functions Variables Typedefs Macros Pages
ascii-art.c
Go to the documentation of this file.
1 
25 /*
26 Jednotlivé funkce ve vytvořené knihovně poté otestujte z modulu hlavní funkce.
27 Příklad výstupu:
28 <code>
29  xxxxxxx
30  x x
31  x ===========
32  x * x *
33  x * x *
34  x * x *
35  x ===========
36  x x
37  x x
38  xxxxxxx
39 </code>
40 Příklad výstupu:
41 <code>
42  ===========
43  * *
44  * o o *
45  * | *
46  * *
47  * \___/ *
48  * *
49  ===========
50 </code>
51 */
52 //Povolené knihovny:
53 #include <stdio.h>
54 #include <stdlib.h>
55 
56 #include "canvas.h"
57 
58 
59 int main(int argc, char *argv[]) {
60  canvas *platno;
61 
62  platno = canvas_create(30, 10);
63 
64  canvas_print(platno);
65 
66 
67  exit(EXIT_SUCCESS);
68 }
canvas * canvas_create(int width, int height)
Definition: canvas.c:31
void canvas_print(canvas *c)
Definition: canvas.c:65