move the debug folder to the top level
[AROS.git] / test / dos / namefromfh.c
blobe9212a80eb694d302731bf97ae4d9477215eee64
1 /*
2 Copyright © 1995-2016, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/dos.h>
7 #include <stdio.h>
9 int main(void)
11 TEXT buffer[512];
12 BPTR fh = Open("__TEST__", MODE_NEWFILE);
14 if (fh != BNULL)
16 if (NameFromFH(fh, buffer, 512))
18 printf("got name: %s\n", buffer);
20 else
22 printf("namefromfh failed. I/O error = %ld\n", IoErr());
25 Close(fh);
26 DeleteFile("__TEST__");
28 else
30 printf("couldn't create file\n");
33 return 0;