您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. linux内核指导相关源代码

  2. #ifndef __KERNEL__ #define __KERNEL__ #endif #ifndef MODULE #define MODULE #endif #define __NO__VERSION__ #include #include #include #include #include #i nclude #include #include #include #include #include #include #include #ifndef VFIF
  3. 所属分类:Linux

    • 发布日期:2009-05-19
    • 文件大小:13312
    • 提供者:niekaiyuan
  1. C语言程序设计标准教程

  2. 适用于初学第十章:文件 文件 文件的基本概念   所谓“文件”是指一组相关数据的有序集合。 这个数据集有一个名称,叫做文件名。 实际上在前面的各章中我们已经多次使用了文件,例如源程序文件、目标文件、可执行文件、库文件 (头文件)等。文件通常是驻留在外部介质(如磁盘等)上的, 在使用时才调入内存中来。从不同的角度可对文件作不同的分类。从用户的角度看,文件可分为普通文件和设备文件两种。   普通文件是指驻留在磁盘或其它外部介质上的一个有序数据集,可以是源文件、目标文件、可执行程序; 也可以是一组待
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:20480
    • 提供者:fanhaoqiang
  1. 匿名管道与命名管道的使用

  2. 管道分类: 根据进程的相互关系,可以分为:匿名管道与命名管道。 1 匿名管道:管道是父进程和子进程间,或是子进程与子进程间单向的通讯机制,即一个进程发送数据到管道,另外一个进程从管道中读出数据。如果需要双向,或是多项通信机制,则需要建立两个活多个管道. 系统负责两件事:一是写入管道的数据和读出管道的数据的顺序是相同的,二是数据不会在管道中丢失,除非某个进程过早的退出. 建立管道函数为 int pipe(int pipe[2]); //其中pipe[0]是读取数据的 描述字,pipe[1]是写数
  3. 所属分类:网络攻防

    • 发布日期:2009-05-23
    • 文件大小:180224
    • 提供者:wyl636
  1. Linux C语言 遍历目录搜索文件的C源程序,支持嵌套目录搜索。

  2. Linux下遍历目录搜索文件源程序以及执行文件,支持嵌套目录,输出目录、子目录和对应的子目录中的文件列表,以及总文件数目。 LINUX下历遍目录的方法一般是这样的:打开目录-》读取-》关闭目录 相关函数是opendir -> readdir -> closedir 这样是不能遍历目录中的所有文件。 //LINUX下目录遍历搜索文件程序,支持嵌套目录 #include #include #include #include #include int do_search_dir
  3. 所属分类:Linux

    • 发布日期:2009-05-26
    • 文件大小:4096
    • 提供者:w_dalu
  1. 带中文注释的 linux 0.11 源代码

  2. linux .....\boot .....\....\bootsect.s .....\....\head.s .....\....\setup.s .....\fs .....\..\bitmap.c .....\..\block_dev.c .....\..\buffer.c .....\..\char_dev.c .....\..\exec.c .....\..\fcntl.c .....\..\file_dev.c .....\..\file_table.c .....\..\ino
  3. 所属分类:C

    • 发布日期:2009-06-03
    • 文件大小:293888
    • 提供者:wangqilong1983
  1. csapp_深入理解计算机系统_相关文件_csapp.h_csapp.c

  2. 深入理解计算机系统: csapp.h csapp.c //csapp.h /* $begin csapp.h */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #
  3. 所属分类:C

    • 发布日期:2009-06-08
    • 文件大小:6144
    • 提供者:dexinmeng
  1. 白皮书h.264 英文版

  2. The Joint Video Team (JVT) of ISO/IEC MPEG and ITU-T VCEG are finalising a new standard for the coding (compression) of natural video images. The new standard [1] will be known as H.264 and also MPEG-4 Part 10, “Advanced Video Coding”. The standard
  3. 所属分类:C++

  1. Tree 容器 tree.h

  2. 树容器 tree.h The tree.hh library for C++ provides an STL-like container class for n-ary trees, templated over the data stored at the nodes. Various types of iterators are provided (post-order, pre-order, and others). Where possible the access methods
  3. 所属分类:C++

    • 发布日期:2009-08-18
    • 文件大小:196608
    • 提供者:xueyoo
  1. 用c语言实现的shell解释器

  2. #include #include #include #include #include #include #include #define MAX_HOST_LEN 32 /* 主机名最大长度 */ #define MAX_PATH_LEN 256 /* 路径的最大长度 */ #define MAX_COMMAND_LEN 256 /*命令的最大长度*/
  3. 所属分类:C

    • 发布日期:2010-03-24
    • 文件大小:2048
    • 提供者:liyongli123456
  1. 用c语言实现的逆序文本程序

  2. #include #include #include #include #include #include #include #define MAX_HOST_LEN 32 /* 主机名最大长度 */ #define MAX_PATH_LEN 256 /* 路径的最大长度 */ #define MAX_COMMAND_LEN 256 /*命令的最大长度*/
  3. 所属分类:C

    • 发布日期:2010-03-24
    • 文件大小:2048
    • 提供者:liyongli123456
  1. v4l.c和v4l.h

  2. v4l.c v4l.h #include #include #include #include #include #include #include #include #include #include "v4l.h"
  3. 所属分类:C

    • 发布日期:2010-10-27
    • 文件大小:2048
    • 提供者:hotkarriver
  1. A Fast Motion Estimation Algorithm for H.264

  2. To reduce computational complexity and maintain the image quality, an integer pixel fast motion estimation algorithm is proposed in this paper. Combining the characters of the UMHexagonS algorithm and the EPZS algorithm, the proposed algorithm selec
  3. 所属分类:C/C++

    • 发布日期:2011-07-19
    • 文件大小:323584
    • 提供者:yanchun3349
  1. H.264 英文原版标准文档

  2. Summary This Recommendation | International Standard represents an evolution of the existing video coding standards (H.261, H.262, and H.263) and it was developed in response to the growing need for higher compression of moving pictures for various
  3. 所属分类:专业指导

    • 发布日期:2011-11-06
    • 文件大小:1048576
    • 提供者:watw521
  1. bits/**.h 头文件

  2. sigset.h sockaddr.h socket.h types.h typesizes.h uio.h wordsize.h ...只是在GNU下的C library,直接下载放进bits文件夹即可
  3. 所属分类:C#

    • 发布日期:2012-10-28
    • 文件大小:11264
    • 提供者:fydxxztj
  1. sys/**.h sys文件夹里面的头文件

  2. socket.h uio.h types.h cdefs.h fcntl.h file.h locking.h param.h .utime.h.. GNU 里面的C library,,对应的头文件
  3. 所属分类:C

    • 发布日期:2012-10-28
    • 文件大小:13312
    • 提供者:fydxxztj
  1. sys/**.h sys文件夹里面的头文件

  2. socket.h uio.h types.h cdefs.h fcntl.h file.h locking.h param.h .utime.h.. GNU 里面的C library,,对应的头文件
  3. 所属分类:其它

    • 发布日期:2014-08-31
    • 文件大小:13312
    • 提供者:qq_15167891
  1. sys/**.h头文件

  2. socket.h uio.h types.h cdefs.h fcntl.h file.h locking.h param.h .utime.h.. GNU 里面的C library,,对应的头文件
  3. 所属分类:C/C++

    • 发布日期:2015-07-15
    • 文件大小:13312
    • 提供者:codehouse
  1. sys/types.h

  2. 解决u_int8_t找不到类型的问题,引入这个头文件即可
  3. 所属分类:C

    • 发布日期:2015-11-02
    • 文件大小:7168
    • 提供者:u012852385
  1. STM32CubeMX的main.h文件生成脚本

  2. STM32CubeMX升级到4.23.0之后,加入freertos之后生成的工程文件会报错: “..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM3\port.c(412): error: A1586E: Bad operand types (UnDefOT, Constant) for operator (”,最后发现是main.h 中的#include "stm32f1xx_hal.h"的定义引起的冲突,网上就一个
  3. 所属分类:C

    • 发布日期:2017-11-16
    • 文件大小:7168
    • 提供者:mickey35
  1. tomcrypt.h

  2. #ifndef TOMCRYPT_H_ #define TOMCRYPT_H_ #include #include #include #include #include #include #include /* use configuration data */ #include #ifdef __cplusplus extern "C" { #endif /* version */ #define CRYPT 0x0116 #define SCRYPT "1.16" /* m
  3. 所属分类:C

    • 发布日期:2009-03-12
    • 文件大小:54272
    • 提供者:huiqiwei321
« 12 3 4 5 6 7 8 9 10 ... 22 »