iPXE
Functions
string.h File Reference

String functions. More...

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
unsigned int digit_value (unsigned int digit)
 Calculate digit value. More...
 

Detailed Description

String functions.

Definition in file string.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ digit_value()

unsigned int digit_value ( unsigned int  character)

Calculate digit value.

Parameters
characterDigit character
Return values
digitDigit value

Invalid digits will be returned as a value greater than or equal to the numeric base.

Definition at line 413 of file string.c.

413  {
414 
415  if ( character >= 'a' )
416  return ( character - ( 'a' - 10 ) );
417  if ( character >= 'A' )
418  return ( character - ( 'A' - 10 ) );
419  if ( character <= '9' )
420  return ( character - '0' );
421  return character;
422 }

Referenced by hex_decode(), string_test_exec(), strtoul(), and strtoull().