repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Small cleanup of extensions code
[AROS.git]
/
compiler
/
clib
/
telldir.c
blob
45fbab87bf0346a845443c7165dca74e858872dc
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
/*****************************************************************************
7
8
NAME */
9
10
#include <dirent.h>
11
12
long
telldir
(
13
14
/* SYNOPSIS */
15
DIR
*
dir
)
16
17
/* FUNCTION
18
19
INPUTS
20
21
RESULT
22
23
NOTES
24
25
EXAMPLE
26
27
BUGS
28
29
SEE ALSO
30
31
INTERNALS
32
33
******************************************************************************/
34
{
35
return
dir
->
pos
;
36
}
37