12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187 |
- /*++
- Copyright (c) 2013 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- scan.c
- Abstract:
- This module implements string scanning functions.
- Author:
- Evan Green 25-May-2013
- Environment:
- User Mode C Library
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include "libcp.h"
- #include <assert.h>
- #include <limits.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- BOOL
- ClpStreamScannerGetInput (
- PSCAN_INPUT Input,
- PCHAR Character
- );
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- LIBC_API
- int
- sscanf (
- const char *Input,
- const char *Format,
- ...
- )
- /*++
- Routine Description:
- This routine scans in a string and converts it to a number of arguments
- based on a format string.
- Arguments:
- Input - Supplies a pointer to the input string to scan.
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ... - Supplies the remaining pointer arguments where the scanned data will
- be returned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- va_list ArgumentList;
- ULONG FormatLength;
- ULONG InputLength;
- ULONG ItemsScanned;
- int ReturnValue;
- KSTATUS Status;
- va_start(ArgumentList, Format);
- InputLength = MAX_ULONG;
- FormatLength = MAX_ULONG;
- Status = RtlStringScanVaList((PSTR)Input,
- InputLength,
- (PSTR)Format,
- FormatLength,
- CharacterEncodingDefault,
- &ItemsScanned,
- ArgumentList);
- if (!KSUCCESS(Status)) {
- ReturnValue = EOF;
- errno = ClConvertKstatusToErrorNumber(Status);
- if (Status != STATUS_END_OF_FILE) {
- if (ItemsScanned != 0) {
- ReturnValue = ItemsScanned;
- }
- }
- } else {
- ReturnValue = ItemsScanned;
- }
- va_end(ArgumentList);
- return ReturnValue;
- }
- LIBC_API
- int
- vsscanf (
- const char *String,
- const char *Format,
- va_list ArgumentList
- )
- /*++
- Routine Description:
- This routine scans in a string and converts it to a number of arguments
- based on a format string.
- Arguments:
- String - Supplies a pointer to the input string to scan.
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ArgumentList - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- ULONG FormatLength;
- ULONG InputLength;
- ULONG ItemsScanned;
- int ReturnValue;
- KSTATUS Status;
- InputLength = MAX_ULONG;
- FormatLength = MAX_ULONG;
- Status = RtlStringScanVaList((PSTR)String,
- InputLength,
- (PSTR)Format,
- FormatLength,
- CharacterEncodingDefault,
- &ItemsScanned,
- ArgumentList);
- if (Status == STATUS_END_OF_FILE) {
- assert(ItemsScanned == 0);
- ReturnValue = EOF;
- } else {
- ReturnValue = ItemsScanned;
- }
- return ReturnValue;
- }
- LIBC_API
- int
- fscanf (
- FILE *Stream,
- const char *Format,
- ...
- )
- /*++
- Routine Description:
- This routine scans in a string from a stream and converts it to a number of
- arguments based on a format string.
- Arguments:
- Stream - Supplies a pointer to the input stream.
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ... - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- va_list ArgumentList;
- int Result;
- va_start(ArgumentList, Format);
- Result = vfscanf(Stream, Format, ArgumentList);
- va_end(ArgumentList);
- return Result;
- }
- LIBC_API
- int
- vfscanf (
- FILE *Stream,
- const char *Format,
- va_list ArgumentList
- )
- /*++
- Routine Description:
- This routine scans in a string from a stream and converts it to a number
- of arguments based on a format string.
- Arguments:
- Stream - Supplies a pointer to the input stream.
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ArgumentList - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- int Result;
- ClpLockStream(Stream);
- Result = vfscanf_unlocked(Stream, Format, ArgumentList);
- ClpUnlockStream(Stream);
- return Result;
- }
- LIBC_API
- int
- vfscanf_unlocked (
- FILE *Stream,
- const char *Format,
- va_list ArgumentList
- )
- /*++
- Routine Description:
- This routine scans in a string from a stream and converts it to a number
- of arguments based on a format string. This routine does not acquire the
- stream's lock.
- Arguments:
- Stream - Supplies a pointer to the input stream.
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ArgumentList - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- SCAN_INPUT Input;
- ULONG ItemsScanned;
- int ReturnValue;
- KSTATUS Status;
- RtlZeroMemory(&Input, sizeof(SCAN_INPUT));
- Input.DataU.Context = Stream;
- Input.ReadU.GetInput = ClpStreamScannerGetInput;
- RtlInitializeMultibyteState(&(Input.State), CharacterEncodingDefault);
- Status = RtlScan(&Input,
- (PSTR)Format,
- MAX_ULONG,
- &ItemsScanned,
- ArgumentList);
- if (Status == STATUS_END_OF_FILE) {
- assert(ItemsScanned == 0);
- ReturnValue = EOF;
- } else {
- ReturnValue = ItemsScanned;
- }
- //
- // Unget any characters that might be there.
- //
- while (Input.ValidUnputCharacters != 0) {
- ungetc_unlocked(Input.UnputCharacters[Input.ValidUnputCharacters - 1],
- Stream);
- Input.ValidUnputCharacters -= 1;
- }
- return ReturnValue;
- }
- LIBC_API
- int
- scanf (
- const char *Format,
- ...
- )
- /*++
- Routine Description:
- This routine scans in a string from standard in and converts it to a number
- of arguments based on a format string.
- Arguments:
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ... - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- va_list ArgumentList;
- int Result;
- va_start(ArgumentList, Format);
- Result = vscanf(Format, ArgumentList);
- va_end(ArgumentList);
- return Result;
- }
- LIBC_API
- int
- vscanf (
- const char *Format,
- va_list ArgumentList
- )
- /*++
- Routine Description:
- This routine scans in a string from standard in and converts it to a number
- of arguments based on a format string.
- Arguments:
- Format - Supplies the format string that specifies how to convert the input
- to the arguments.
- ArgumentList - Supplies the remaining arguments, which are all pointers to
- various types to be scanned.
- Return Value:
- Returns the number of successfully matched items on success. If the input
- ends before the first matching failure or conversion, EOF is returned. If
- a read error occurs, EOF shall be returned and errno shall be set to
- indicate the error.
- --*/
- {
- int Result;
- Result = vfscanf(stdin, Format, ArgumentList);
- return Result;
- }
- LIBC_API
- int
- atoi (
- const char *String
- )
- /*++
- Routine Description:
- This routine converts a string to an integer. This routine is provided for
- compatibility with existing applications. New applications should use
- strtol instead.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned.
- --*/
- {
- return (int)strtol(String, NULL, 10);
- }
- LIBC_API
- double
- atof (
- const char *String
- )
- /*++
- Routine Description:
- This routine converts a string to a double floating point value. This
- routine is provided for compatibility with existing applications. New
- applications should use strtod instead.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to a
- double.
- Return Value:
- Returns the floating point representation of the string. If the value could
- not be converted, 0 is returned.
- --*/
- {
- return strtod(String, NULL);
- }
- LIBC_API
- long
- atol (
- const char *String
- )
- /*++
- Routine Description:
- This routine converts a string to an integer. This routine is provided for
- compatibility with existing applications. New applications should use
- strtol instead.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned.
- --*/
- {
- return strtol(String, NULL, 10);
- }
- LIBC_API
- long long
- atoll (
- const char *String
- )
- /*++
- Routine Description:
- This routine converts a string to an integer. This routine is provided for
- compatibility with existing applications. New applications should use
- strtoll instead.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned.
- --*/
- {
- return strtoll(String, NULL, 10);
- }
- LIBC_API
- float
- strtof (
- const char *String,
- char **StringAfterScan
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into a
- float. This routine will scan past any whitespace at the beginning of
- the string.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to a
- float.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the float was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Return Value:
- Returns the float representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to either EINVAL if the
- number could not be converted or ERANGE if the number is outside of the
- return type's expressible range.
- --*/
- {
- double Double;
- Double = strtod(String, StringAfterScan);
- return (float)Double;
- }
- LIBC_API
- double
- strtod (
- const char *String,
- char **StringAfterScan
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into a
- double. This routine will scan past any whitespace at the beginning of
- the string.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to a
- double.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the double was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Return Value:
- Returns the double representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to either EINVAL if the
- number could not be converted or ERANGE if the number is outside of the
- return type's expressible range.
- --*/
- {
- double Double;
- PCSTR RemainingString;
- KSTATUS Status;
- ULONG StringLength;
- StringLength = MAX_ULONG;
- RemainingString = (PSTR)String;
- Status = RtlStringScanDouble(&RemainingString, &StringLength, &Double);
- if (StringAfterScan != NULL) {
- *StringAfterScan = (PSTR)RemainingString;
- }
- if (!KSUCCESS(Status)) {
- if (Status == STATUS_INVALID_SEQUENCE) {
- Status = STATUS_INVALID_PARAMETER;
- }
- errno = ClConvertKstatusToErrorNumber(Status);
- return Double;
- }
- return Double;
- }
- LIBC_API
- long double
- strtold (
- const char *String,
- char **StringAfterScan
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into a
- long double. This routine will scan past any whitespace at the beginning of
- the string.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to a
- long double.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the long double
- was scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Return Value:
- Returns the long double representation of the string. If the value could not
- be converted, 0 is returned, and errno will be set to either EINVAL if the
- number could not be converted or ERANGE if the number is outside of the
- return type's expressible range.
- --*/
- {
- double Double;
- Double = strtod(String, StringAfterScan);
- return (long double)Double;
- }
- LIBC_API
- long
- strtol (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to either EINVAL if the
- number could not be converted or ERANGE if the number is outside of the
- return type's expressible range.
- --*/
- {
- LONGLONG Integer;
- PCSTR RemainingString;
- KSTATUS Status;
- ULONG StringLength;
- StringLength = MAX_ULONG;
- RemainingString = (PSTR)String;
- Status = RtlStringScanInteger(&RemainingString,
- &StringLength,
- Base,
- TRUE,
- &Integer);
- if (StringAfterScan != NULL) {
- *StringAfterScan = (PSTR)RemainingString;
- }
- if (!KSUCCESS(Status)) {
- errno = ClConvertKstatusToErrorNumber(Status);
- //
- // On integer overflow, set errno to ERANGE, but still return the
- // value, which will be a very extreme value.
- //
- if (Status == STATUS_INTEGER_OVERFLOW) {
- if (Integer == LLONG_MAX) {
- return LONG_MAX;
- }
- return LONG_MIN;
- } else {
- return 0;
- }
- }
- if (Integer > LONG_MAX) {
- errno = ERANGE;
- return LONG_MAX;
- } else if (Integer < LONG_MIN) {
- errno = ERANGE;
- return LONG_MIN;
- }
- return (LONG)Integer;
- }
- LIBC_API
- long long
- strtoll (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to EINVAL to indicate the
- number could not be converted.
- --*/
- {
- LONGLONG Integer;
- PCSTR RemainingString;
- KSTATUS Status;
- ULONG StringLength;
- StringLength = MAX_ULONG;
- RemainingString = (PSTR)String;
- Status = RtlStringScanInteger(&RemainingString,
- &StringLength,
- Base,
- TRUE,
- &Integer);
- if (StringAfterScan != NULL) {
- *StringAfterScan = (PSTR)RemainingString;
- }
- if (!KSUCCESS(Status)) {
- if (Status != STATUS_INTEGER_OVERFLOW) {
- Integer = 0;
- }
- errno = ClConvertKstatusToErrorNumber(Status);
- }
- return Integer;
- }
- LIBC_API
- unsigned long
- strtoul (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to either EINVAL if the
- number could not be converted or ERANGE if the number is outside of the
- return type's expressible range.
- --*/
- {
- LONGLONG Integer;
- PCSTR RemainingString;
- KSTATUS Status;
- ULONG StringLength;
- StringLength = MAX_ULONG;
- RemainingString = (PSTR)String;
- Status = RtlStringScanInteger(&RemainingString,
- &StringLength,
- Base,
- FALSE,
- &Integer);
- if (StringAfterScan != NULL) {
- *StringAfterScan = (PSTR)RemainingString;
- }
- if (!KSUCCESS(Status)) {
- errno = ClConvertKstatusToErrorNumber(Status);
- if (Status == STATUS_INTEGER_OVERFLOW) {
- return ULONG_MAX;
- } else {
- return 0;
- }
- }
- if ((ULONGLONG)Integer > ULONG_MAX) {
- errno = ERANGE;
- return ULONG_MAX;
- }
- return (ULONG)(ULONGLONG)Integer;
- }
- LIBC_API
- unsigned long long
- strtoull (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to EINVAL to indicate the
- number could not be converted.
- --*/
- {
- LONGLONG Integer;
- PCSTR RemainingString;
- KSTATUS Status;
- ULONG StringLength;
- StringLength = MAX_ULONG;
- RemainingString = (PSTR)String;
- Status = RtlStringScanInteger(&RemainingString,
- &StringLength,
- Base,
- FALSE,
- &Integer);
- if (StringAfterScan != NULL) {
- *StringAfterScan = (PSTR)RemainingString;
- }
- if (!KSUCCESS(Status)) {
- if (Status != STATUS_INTEGER_OVERFLOW) {
- Integer = 0;
- }
- errno = ClConvertKstatusToErrorNumber(Status);
- }
- return (ULONGLONG)Integer;
- }
- LIBC_API
- intmax_t
- strtoimax (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to EINVAL to indicate the
- number could not be converted.
- --*/
- {
- return strtoll(String, StringAfterScan, Base);
- }
- LIBC_API
- uintmax_t
- strtoumax (
- const char *String,
- char **StringAfterScan,
- int Base
- )
- /*++
- Routine Description:
- This routine converts the initial portion of the given string into an
- integer. This routine will scan past any whitespace at the beginning of
- the string. The string may have an optional plus or minus in front of the
- number to indicate sign.
- Arguments:
- String - Supplies a pointer to the null terminated string to convert to an
- integer.
- StringAfterScan - Supplies a pointer where a pointer will be returned
- representing the remaining portion of the string after the integer was
- scanned. If the entire string is made up of whitespace or invalid
- characters, then this will point to the beginning of the given string
- (the scanner will not be advanced).
- Base - Supplies the base system to interpret the number as. If zero is
- supplied, the base will be figured out based on the contents of the
- string. If the string begins with 0, it's treated as an octal (base 8)
- number. If the string begins with 1-9, it's treated as a decimal
- (base 10) number. And if the string begins with 0x or 0X, it's treated
- as a hexadecimal (base 16) number. Other base values must be specified
- explicitly here.
- Return Value:
- Returns the integer representation of the string. If the value could not be
- converted, 0 is returned, and errno will be set to EINVAL to indicate the
- number could not be converted.
- --*/
- {
- return strtoull(String, StringAfterScan, Base);
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
- BOOL
- ClpStreamScannerGetInput (
- PSCAN_INPUT Input,
- PCHAR Character
- )
- /*++
- Routine Description:
- This routine retrieves another byte of input from the input scanner for a
- stream based scanner.
- Arguments:
- Input - Supplies a pointer to the input scanner structure.
- Character - Supplies a pointer where the character will be returned on
- success.
- Return Value:
- TRUE if a character was read.
- FALSE if the end of the file or string was encountered.
- --*/
- {
- int NewCharacter;
- NewCharacter = fgetc_unlocked(Input->DataU.Context);
- if (NewCharacter == EOF) {
- return FALSE;
- }
- *Character = (CHAR)NewCharacter;
- Input->CharactersRead += 1;
- return TRUE;
- }
|