Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
37 |
mv_fox |
1 |
#include <stdio.h>
|
|
|
2 |
#include "kitten.h" /* kittenopen/kittengets */
|
|
|
3 |
|
|
|
4 |
int main (void) {
|
|
|
5 |
char *s;
|
|
|
6 |
|
|
|
7 |
kittenopen("example");
|
|
|
8 |
|
|
|
9 |
s = kittengets(7, 4, "Failure writing to drive A:");
|
|
|
10 |
printf("%s\n", s);
|
|
|
11 |
|
|
|
12 |
kittenclose();
|
|
|
13 |
return(0);
|
|
|
14 |
}
|