⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 active.h

📁 由3926个源代码
💻 H
字号:
/*--------------------------------------------------------------------*/
/*    a c t i v e . h                                                 */
/*                                                                    */
/*    Structures and function prototypes for active file              */
/*    processing in UUPC/extended.  Written by Mike Lipsie            */
/*--------------------------------------------------------------------*/

struct grp {
   struct grp *grp_next;   /* Next group */
   char *grp_name;      /* Group name -- "ba.food" for example */
   long   grp_high;  /* Number for next article to be stored */
   long   grp_low;       /* Lowest numbered article not expired */
   char  grp_can_post;
   };

extern struct grp *group_list;   /* List of all groups */

void get_active(void);     /* Read in the active newsgroups file */
void put_active(void);     /* Write the active newsgroups file */
void validate_newsgroups(void);  /* Make sure the directory structure exists */

#ifndef MAXGRP
#define MAXGRP FILENAME_MAX   /* Max length of a news group name     */
#endif

⌨️ 快捷键说明

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