xref: /netbsd-src/external/bsd/ntp/dist/libparse/trim_info.c (revision cdfa2a7ef92791ba9db70a584a1d904730e6fb46)
1*cdfa2a7eSchristos /*	$NetBSD: trim_info.c,v 1.6 2020/05/25 20:47:25 christos Exp $	*/
2abb0f93cSkardel 
3abb0f93cSkardel /*
4abb0f93cSkardel  * /src/NTP/ntp4-dev/libparse/trim_info.c,v 4.5 2005/04/16 17:32:10 kardel RELEASE_20050508_A
5abb0f93cSkardel  *
6abb0f93cSkardel  * trim_info.c,v 4.5 2005/04/16 17:32:10 kardel RELEASE_20050508_A
7abb0f93cSkardel  *
88585484eSchristos  * $Created: Sun Aug  2 20:20:34 1998 $
9abb0f93cSkardel  *
10abb0f93cSkardel  * Copyright (c) 1995-2005 by Frank Kardel <kardel <AT> ntp.org>
117476e6e4Schristos  * Copyright (c) 1989-1994 by Frank Kardel, Friedrich-Alexander Universitaet Erlangen-Nuernberg, Germany
12abb0f93cSkardel  *
13abb0f93cSkardel  * Redistribution and use in source and binary forms, with or without
14abb0f93cSkardel  * modification, are permitted provided that the following conditions
15abb0f93cSkardel  * are met:
16abb0f93cSkardel  * 1. Redistributions of source code must retain the above copyright
17abb0f93cSkardel  *    notice, this list of conditions and the following disclaimer.
18abb0f93cSkardel  * 2. Redistributions in binary form must reproduce the above copyright
19abb0f93cSkardel  *    notice, this list of conditions and the following disclaimer in the
20abb0f93cSkardel  *    documentation and/or other materials provided with the distribution.
21abb0f93cSkardel  * 3. Neither the name of the author nor the names of its contributors
22abb0f93cSkardel  *    may be used to endorse or promote products derived from this software
23abb0f93cSkardel  *    without specific prior written permission.
24abb0f93cSkardel  *
25abb0f93cSkardel  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
26abb0f93cSkardel  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27abb0f93cSkardel  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28abb0f93cSkardel  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
29abb0f93cSkardel  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30abb0f93cSkardel  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31abb0f93cSkardel  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32abb0f93cSkardel  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33abb0f93cSkardel  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34abb0f93cSkardel  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35abb0f93cSkardel  * SUCH DAMAGE.
36abb0f93cSkardel  *
37abb0f93cSkardel  */
388585484eSchristos #include <config.h>
39abb0f93cSkardel #include "ntp_types.h"
40abb0f93cSkardel #include "trimble.h"
41abb0f93cSkardel 
42abb0f93cSkardel cmd_info_t *
trimble_convert(unsigned int cmd,cmd_info_t * tbl)43abb0f93cSkardel trimble_convert(
44abb0f93cSkardel 		unsigned int cmd,
45abb0f93cSkardel 		cmd_info_t   *tbl
46abb0f93cSkardel 		)
47abb0f93cSkardel {
48abb0f93cSkardel   int i;
49abb0f93cSkardel 
50abb0f93cSkardel   for (i = 0; tbl[i].cmd != 0xFF; i++)
51abb0f93cSkardel     {
52abb0f93cSkardel       if (tbl[i].cmd == cmd)
53abb0f93cSkardel 	return &tbl[i];
54abb0f93cSkardel     }
55abb0f93cSkardel   return 0;
56abb0f93cSkardel }
57abb0f93cSkardel 
58abb0f93cSkardel /*
59abb0f93cSkardel  * trim_info.c,v
60abb0f93cSkardel  * Revision 4.5  2005/04/16 17:32:10  kardel
61abb0f93cSkardel  * update copyright
62abb0f93cSkardel  *
63abb0f93cSkardel  * Revision 4.4  2004/11/14 15:29:41  kardel
64abb0f93cSkardel  * support PPSAPI, upgrade Copyright to Berkeley style
65abb0f93cSkardel  *
66abb0f93cSkardel  * Revision 4.2  1998/12/20 23:45:31  kardel
67abb0f93cSkardel  * fix types and warnings
68abb0f93cSkardel  *
69abb0f93cSkardel  * Revision 4.1  1998/08/09 22:27:48  kardel
70abb0f93cSkardel  * Trimble TSIP support
71abb0f93cSkardel  *
72abb0f93cSkardel  */
73