Difference between revisions of "Team !YOU - BIO Library"
m (→creating page) |
Fmdeoliveira (talk | contribs) m (→Function Distribution) |
||
Line 2: | Line 2: | ||
= Basic Input Output Library = | = Basic Input Output Library = | ||
+ | |||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |+ Simple Function Commit Tasks | ||
+ | ! Function !! Member Responsible | ||
+ | |- | ||
+ | | void bio_init() || - | ||
+ | |- | ||
+ | | void bio_end() || - | ||
+ | |- | ||
+ | | int bio_rows() || - | ||
+ | |- | ||
+ | | int bio_cols() || - | ||
+ | |- | ||
+ | | void bio_clrscr() || - | ||
+ | |- | ||
+ | | void bio_flush() || - | ||
+ | |- | ||
+ | | int bio_getch() || - | ||
+ | |- | ||
+ | | void bio_move(int r, int c) || - | ||
+ | |- | ||
+ | | void bio_putch(int c) || - | ||
+ | |- | ||
+ | | void bio_putstr(const char* str) || - | ||
+ | |} | ||
A link to the [http://zenit.senecac.on.ca/wiki/index.php/BIOF_20101_%28AS1%29_-_OOP344 assignment]. | A link to the [http://zenit.senecac.on.ca/wiki/index.php/BIOF_20101_%28AS1%29_-_OOP344 assignment]. |
Revision as of 20:04, 1 February 2010
Team !You - To the main team page.
Basic Input Output Library
Function | Member Responsible |
---|---|
void bio_init() | - |
void bio_end() | - |
int bio_rows() | - |
int bio_cols() | - |
void bio_clrscr() | - |
void bio_flush() | - |
int bio_getch() | - |
void bio_move(int r, int c) | - |
void bio_putch(int c) | - |
void bio_putstr(const char* str) | - |
A link to the assignment.