This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/include/SYS/DIR.H

22 lines
275 B
C

/* Copyright (C) 1986-1994 by Digital Mars. $Revision: 1.1.1.1 $ */
#if __SC__ || __RCC__
#pragma once
#endif
#ifndef __SYS_DIR_H
#define __SYS_DIR_H 1
#ifndef DIRSIZ
#define DIRSIZ 14
#endif
struct direct
{
unsigned short int d_ino;
char d_name[DIRSIZ];
};
#endif