aboutsummaryrefslogblamecommitdiffstats
path: root/libgamma_behex_edid.c
blob: 269d68f15b33c3b97416f6a37fbecc75759e3692 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                                  
/* See LICENSE file for copyright and license details. */
#include "common.h"


/**
 * Convert a raw representation of an EDID to a lowercase hexadecimal representation
 * 
 * @param   edid:const unsigned char*  The EDID in raw representation
 * @param   length:size_t              The length of `edid`
 * @return  :char*                     The EDID in lowercase hexadecimal representation,
 *                                     `NULL` on allocation error, `errno` will be set accordingly
 */
extern inline char *libgamma_behex_edid(const unsigned char *restrict, size_t);