- Function
Open a directory.
- Header
- Declaration
DIR* __fastcall__ opendir (const char* name);- Description
opendiropens a directory and returns the direcory descriptor associated with it. On error, NULL is returned and an error code is stored inerrno.- Limits
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
POSIX 1003.1
- See also
- Example
None.