📄 strtable_misc.c
字号:
/*$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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -