Initial version of donated sources by Avertec, 3.4p5.
[tas-yagle.git] / distrib / sources / tbg / tbg_GetPort.c
1 #include "tbg.h"
2
3 t_port *tbg_GetPort (char *port_name)
4 {
5 t_port *port;
6
7 for (port = HEAD_PORT; port; port = port->NEXT)
8 if (!strcasecmp (port->NAME, port_name))
9 return port;
10
11 return NULL;
12 }