Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hallo, Die Struktur struct dirent{ ino_t d_ino; char d_name; }; hat einen Namen von char. Wie kann ein Verzeichnisname ein Zeichen sein? Danke
Hi,
d_name ist _nicht_ ein Zeichen, sondern ein Array.
Definition:
struct dirent { ino_t d_ino; char d_name[_NAME_MAX_+1]; };
mfg v R