mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
1.9 KiB
164 lines
1.9 KiB
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dbgutil.c
|
|
|
|
Abstract:
|
|
|
|
Utility functions.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 20-May-1996
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
//
|
|
// Public functions.
|
|
//
|
|
|
|
PSTR
|
|
LongLongToString(
|
|
LONGLONG Value
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Maps a LONGLONG to a displayable string.
|
|
|
|
Arguments:
|
|
|
|
Value - The LONGLONG to map.
|
|
|
|
Return Value:
|
|
|
|
PSTR - Points to the displayable form of the LONGLONG.
|
|
|
|
Notes:
|
|
|
|
This routine is NOT multithread safe!
|
|
|
|
--*/
|
|
|
|
{
|
|
|
|
static char buffer[32];
|
|
PSTR p1;
|
|
PSTR p2;
|
|
char ch;
|
|
int digit;
|
|
BOOL negative;
|
|
|
|
//
|
|
// Handling zero specially makes everything else a bit easier.
|
|
//
|
|
|
|
if( Value == 0 ) {
|
|
|
|
return "0";
|
|
|
|
}
|
|
|
|
//
|
|
// Remember if the value is negative.
|
|
//
|
|
|
|
if( Value < 0 ) {
|
|
|
|
negative = TRUE;
|
|
Value = -Value;
|
|
|
|
} else {
|
|
|
|
negative = FALSE;
|
|
|
|
}
|
|
|
|
//
|
|
// Pull the least signifigant digits off the value and store them
|
|
// into the buffer. Note that this will store the digits in the
|
|
// reverse order.
|
|
//
|
|
|
|
p1 = p2 = buffer;
|
|
|
|
while( Value != 0 ) {
|
|
|
|
digit = (int)( Value % 10 );
|
|
Value = Value / 10;
|
|
|
|
*p1++ = '0' + digit;
|
|
|
|
}
|
|
|
|
//
|
|
// Tack on a leading '-' if necessary.
|
|
//
|
|
|
|
if( negative ) {
|
|
|
|
*p1++ = '-';
|
|
|
|
}
|
|
|
|
//
|
|
// Reverse the digits in the buffer.
|
|
//
|
|
|
|
*p1-- = '\0';
|
|
|
|
while( p1 > p2 ) {
|
|
|
|
ch = *p1;
|
|
*p1 = *p2;
|
|
*p2 = ch;
|
|
|
|
p2++;
|
|
p1--;
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
} // LongLongToString
|
|
|
|
|
|
PSTR
|
|
BooleanToString(
|
|
BOOLEAN Flag
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Maps a BOOELEAN to a displayable form.
|
|
|
|
Arguments:
|
|
|
|
Flag - The BOOLEAN to map.
|
|
|
|
Return Value:
|
|
|
|
PSTR - Points to the displayable form of the BOOLEAN.
|
|
|
|
--*/
|
|
|
|
{
|
|
|
|
return Flag ? "TRUE" : "FALSE";
|
|
|
|
} // BooleanToString
|
|
|