xref: /titanic_50/usr/src/lib/libjedec/common/libjedec.h (revision 174bc6499d233e329ecd3d98a880a7b07df16bfa)
1*174bc649SRobert Mustacchi /*
2*174bc649SRobert Mustacchi  * This file and its contents are supplied under the terms of the
3*174bc649SRobert Mustacchi  * Common Development and Distribution License ("CDDL"), version 1.0.
4*174bc649SRobert Mustacchi  * You may only use this file in accordance with the terms of version
5*174bc649SRobert Mustacchi  * 1.0 of the CDDL.
6*174bc649SRobert Mustacchi  *
7*174bc649SRobert Mustacchi  * A full copy of the text of the CDDL should have accompanied this
8*174bc649SRobert Mustacchi  * source.  A copy of the CDDL is also available via the Internet at
9*174bc649SRobert Mustacchi  * http://www.illumos.org/license/CDDL.
10*174bc649SRobert Mustacchi  */
11*174bc649SRobert Mustacchi 
12*174bc649SRobert Mustacchi /*
13*174bc649SRobert Mustacchi  * Copyright (c) 2018, Joyent, Inc.
14*174bc649SRobert Mustacchi  */
15*174bc649SRobert Mustacchi 
16*174bc649SRobert Mustacchi #ifndef _LIBJEDEC_H
17*174bc649SRobert Mustacchi #define	_LIBJEDEC_H
18*174bc649SRobert Mustacchi 
19*174bc649SRobert Mustacchi /*
20*174bc649SRobert Mustacchi  * Library routines that allow access to JEDEC JEP-106 vendor data.
21*174bc649SRobert Mustacchi  */
22*174bc649SRobert Mustacchi 
23*174bc649SRobert Mustacchi #ifdef __cplusplus
24*174bc649SRobert Mustacchi extern "C" {
25*174bc649SRobert Mustacchi #endif
26*174bc649SRobert Mustacchi 
27*174bc649SRobert Mustacchi extern const char *libjedec_vendor_string(uint_t, uint_t);
28*174bc649SRobert Mustacchi 
29*174bc649SRobert Mustacchi #ifdef __cplusplus
30*174bc649SRobert Mustacchi }
31*174bc649SRobert Mustacchi #endif
32*174bc649SRobert Mustacchi 
33*174bc649SRobert Mustacchi #endif /* _LIBJEDEC_H */
34