代码搜索:Direct
找到约 10,000 项符合「Direct」的源代码
代码结果 10,000
www.eeworm.com/read/400494/2350695
h direct.h
/* This file should define `struct direct' on Unix systems.
This is the type of actual records in directory files.
See readdir.c. */
#error No struct dirent definition.
www.eeworm.com/read/400494/2351132
h direct.h
#ifndef MAXNAMLEN
#define MAXNAMLEN 255
#endif
struct direct
{
unsigned int d_fileno; /* 32 bits. */
unsigned short int d_reclen; /* 16 bits. */
unsigned short int d_namlen; /* 16 bit
www.eeworm.com/read/400494/2351145
h direct.h
#ifndef MAXNAMLEN
#define MAXNAMLEN 255
#endif
struct direct
{
unsigned long int d_fileno;
unsigned short int d_reclen;
unsigned char d_type; /* File type, possibly unknown. */
uns
www.eeworm.com/read/400494/2351287
h direct.h
struct direct
{
unsigned short int d_fileno;
char d_name[14];
};
#define D_NAMLEN(d) \
((d)->d_name[13] == '\0' ? strlen ((d)->d_name) : 14)
#define D_RECLEN(d) (sizeof (*(d)))
www.eeworm.com/read/400494/2351299
h direct.h
/* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the
www.eeworm.com/read/400494/2351359
h direct.h
#ifndef MAXNAMLEN
#define MAXNAMLEN 512
#endif
#define DIRBUF 1048 /* minimum buffer size for call to getdents */
struct direct
{
unsigned short int d_fileno;
short int d_pad;
l
www.eeworm.com/read/400494/2351416
h direct.h
#ifndef MAXNAMLEN
#define MAXNAMLEN 255
#endif
struct direct
{
unsigned long int d_ino;
off_t d_off;
unsigned short int d_reclen;
char d_name[MAXNAMLEN + 1];
};
#define D_NAMLEN(
www.eeworm.com/read/400494/2351477
h direct.h
/* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the
www.eeworm.com/read/395331/2438306
c direct.c
/*
* $Id: direct.c 851 2007-12-15 22:53:24Z kawk $
*
* Direct Parallel Port Connection Driver
* Copyright (C) 2003 ETC s.r.o.
*
* This program is free software; you can redistribute it and/or
*