blob: 954c7f16bab7825fd12863a1bcb8af589eb29c27 (
plain) (
blame)
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 );
extern unsigned int digit_value ( unsigned int digit );
#endif /* _IPXE_STRING_H */
|