alias.h

来自「由3926个源代码」· C头文件 代码 · 共 30 行

H
30
字号
/*
   router.h

   routines included in router.c

   Copyright (c) 1989, Andrew H. Derbyshire

   Update History:

   30Sep89     Convert selected functions to type boolean            ahd
   18Mar90     Split out host name routines to hostable.h            ahd
 */

static struct AliasTable {
      char *anick;
      char *anode;
      char *auser;
      char *afull;
   };

void ExtractName( char *result, char *column );

void BuildAddress(char *result, const char *input );

char *AliasByNick(const char *input);

char *AliasByAddr(const char *node, const char *user);

boolean InitRouter( void );

⌨️ 快捷键说明

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