aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-values.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-06-22 20:53:13 +0200
committerTristan Gingold <tgingold@free.fr>2016-06-22 21:07:30 +0200
commit1e5de3c73a5865cc0df2ee32d1d81c9718c5f44f (patch)
tree64a0655d941e335a3ff040ba81f5491173680530 /src/grt/grt-values.ads
parent7f9077d0c40b7fe381b3c6278e15ccb9245c909b (diff)
downloadghdl-1e5de3c73a5865cc0df2ee32d1d81c9718c5f44f.tar.gz
ghdl-1e5de3c73a5865cc0df2ee32d1d81c9718c5f44f.tar.bz2
ghdl-1e5de3c73a5865cc0df2ee32d1d81c9718c5f44f.zip
grt: add grt-strings, use case insensitive compare for vpi_handle_by_name
Fixes potentialventures/cocotb#460
Diffstat (limited to 'src/grt/grt-values.ads')
-rw-r--r--src/grt/grt-values.ads6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/grt/grt-values.ads b/src/grt/grt-values.ads
index 5f1e5169d..ee76109d5 100644
--- a/src/grt/grt-values.ads
+++ b/src/grt/grt-values.ads
@@ -26,12 +26,6 @@ with Grt.Types; use Grt.Types;
with Grt.Rtis; use Grt.Rtis;
package Grt.Values is
- -- Return True IFF C is a whitespace character (as defined in LRM93 14.3)
- function Is_Whitespace (C : in Character) return Boolean;
-
- -- Convert C to lowercase.
- function To_LC (C : in Character) return Character;
-
-- Extract position of numeric literal and unit in string STR.
-- Set IS_REAL if the unit is a real number (presence of '.').
-- Set UNIT_POS to the position of the first character of the unit name.