代码搜索结果

找到约 10,000 项符合 H 的代码

includes.h

/* *************************************************************** * INCLUDES.H *************************************************************** */ #include "OS_CFG.H"

bsp.h

#ifndef __BSP_H__ #define __BSP_H__ #include "plibdefs_mmc2107.h" #include "itcn_b.h" #include "core_b.h" #include "pll_b.h" #include "watchdog_a.h" #include "pit_b.h" #include "sci_d.h" #i

cg.h

/*cg.h */ #include "stdio.h" #include "alloc.h" #define VERTEX_MAX 30 /*最大顶点数*/ #define MAXSIZE 20 /*============以下为邻接矩阵的结构描述============*/ typedef char Vextype[3]; /*顶点类型*/ typedef struct

pwm.h

#ifndef __PWM_H__ #define __PWM_H__ #include "bsp.h" typedef enum{ PWM_ERR_NONE, PWM_ERR_WIDTH_OVERFLOW, } PWM_ReturnCode_t; /* PWM return codes */ /*-------------------------

sj.h

#include #include #include #include #define MAXSIZE 30 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -1 typede

sj.h

#include #include #include #include #define MAXSIZE 30 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -1 typede

sj.h

#include #include #include #include #define MAXSIZE 30 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -1 typede

lstack.h

/*lstack.h*/ #include"sj.h" /*调用自定义库函数*/ typedef struct node{ ElemType data; struct node *next; }StackNode; typedef struct { struct node *top; }LinkStack; void

sqstack.h

#include"sj.h" /*调用自定义库函数*/ typedef struct { ElemType elem[MAXSIZE]; int top; }SeqStack; /*定义顺序栈结构*/ void InitStack_Sq(

httppil.h

/////////////////////////////////////////////////////////////////////// // // httpapi.h // // Header file for Miniweb Platform Independent Layer // //////////////////////////////////////////////