strtable_misc.c

来自「dvbsnoop is a DVB/MPEG stream analyzer p」· C语言 代码 · 共 55 行

C
55
字号
/*$Id: strtable_misc.c,v 1.1 2004/07/24 11:47:08 rasc Exp $ DVBSNOOP a dvb sniffer  and mpeg2 stream analyzer tool http://dvbsnoop.sourceforge.net/ (c) 2001-2004   Rainer.Scherg@gmx.de -- String table misc.$Log: strtable_misc.c,v $Revision 1.1  2004/07/24 11:47:08  rascEN 301 192 update - New: ECM_repetition_rate_descriptor (EN 301 192 v1.4.1) - New: time_slice_fec_identifier_descriptor (EN 301 192 v1.4.1) - New: Section MPE_FEC  EN 301 192 v1.4 - Bugfixes*/#include "strtable_misc.h"/*  -- match id in range from STR_TABLE*/char *findTableID (STR_TABLE *t, u_int id){  while (t->str) {    if (t->from <= id && t->to >= id)       return t->str;    t++;  }  return ">>ERROR: not (yet) defined... Report!<<";}

⌨️ 快捷键说明

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