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