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 426 of file string.c.

426  {
427 
428  if ( character >= 'a' )
429  return ( character - ( 'a' - 10 ) );
430  if ( character >= 'A' )
431  return ( character - ( 'A' - 10 ) );
432  if ( character <= '9' )
433  return ( character - '0' );
434  return character;
435 }

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