blob: a8cbe8faa039c5c002c52cc8cdf08c36c721fbdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _IPXE_STRING_H
#define _IPXE_STRING_H
/** @file
*
* String functions
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
extern unsigned int digit_value ( unsigned int digit );
#endif /* _IPXE_STRING_H */
|