region.h

来自「linux下阅读源码的好工具」· C头文件 代码 · 共 33 行

H
33
字号
/* Copyright (c) 1994 Sun Wu, Udi Manber, Burra Gopal.  All Rights Reserved. *//* Constructed from the mail messages received from Bill Camargo in June 1994 */#ifndef	_REGION_H_#define _REGION_H_#include <sys/types.h>#include <autoconf.h>	/* autoconf defines STRUCTURED_SQURIES */#if	STRUCTURED_QUERIES/* These are imports from Bill's stuff */#include "util.h"#include "template.h"#endif	/*STRUCTURED_QUERIES*//* These are mine */typedef struct REGION {	int	length;	int	offset;	int	attributeid;	struct REGION *next, *prev;} region_t;/* Assuming there are no more than 2^(8*sizeof(int)) attributes */typedef struct ATTR_ELEMENT {	struct ATTR_ELEMENT *next;	int	attributeid;	char	*attribute;	/* pointer to the one in the hash entry */} attr_element_t;extern FILE *my_fopen();extern char *my_malloc();extern int my_free();#endif	/*_REGION_H_*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?