diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-12-14 01:06:04 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-12-14 01:06:04 +0000 |
commit | ed20a4786f2177ddb10716ce386b41eae69696e4 (patch) | |
tree | b284bdfce8bb4cf2d417bcf57da78f37f66bc1c8 /gdb/language.h | |
parent | 64502d627774c5d5b399a9725f1020b435e80b54 (diff) | |
download | gdb-ed20a4786f2177ddb10716ce386b41eae69696e4.tar.gz |
import gdb-1999-12-13 snapshot
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gdb/language.h b/gdb/language.h index 9484e0be9de..b730d9b26ea 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -360,16 +360,28 @@ extern char * extern char * local_hex_format_custom PARAMS ((char *)); /* language.c */ +/* Return a string that contains the hex digits of the number. No preceeding + "0x" */ + +extern char * + longest_raw_hex_string PARAMS ((LONGEST)); + /* Return a string that contains a number formatted in one of the local (language-specific) formats. Result is static and is overwritten by - the next call. Takes printf options like "08" or "l". */ + the next call. Takes printf options like "08l" or "l". */ extern char * local_hex_string PARAMS ((unsigned long)); /* language.c */ extern char * + longest_local_hex_string PARAMS ((LONGEST)); /* language.c */ + +extern char * local_hex_string_custom PARAMS ((unsigned long, char *)); /* language.c */ +extern char * + longest_local_hex_string_custom PARAMS ((LONGEST, char *)); /* language.c */ + /* Type predicates */ extern int |