summaryrefslogtreecommitdiffstats
path: root/gnu-efi-3.0/lib/runtime/rtstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu-efi-3.0/lib/runtime/rtstr.c')
-rw-r--r--gnu-efi-3.0/lib/runtime/rtstr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu-efi-3.0/lib/runtime/rtstr.c b/gnu-efi-3.0/lib/runtime/rtstr.c
index 332e50a..e283c09 100644
--- a/gnu-efi-3.0/lib/runtime/rtstr.c
+++ b/gnu-efi-3.0/lib/runtime/rtstr.c
@@ -23,8 +23,8 @@ Revision History
INTN
RUNTIMEFUNCTION
RtStrCmp (
- IN CHAR16 *s1,
- IN CHAR16 *s2
+ IN CONST CHAR16 *s1,
+ IN CONST CHAR16 *s2
)
// compare strings
{
@@ -47,7 +47,7 @@ VOID
RUNTIMEFUNCTION
RtStrCpy (
IN CHAR16 *Dest,
- IN CHAR16 *Src
+ IN CONST CHAR16 *Src
)
// copy strings
{
@@ -64,7 +64,7 @@ VOID
RUNTIMEFUNCTION
RtStrCat (
IN CHAR16 *Dest,
- IN CHAR16 *Src
+ IN CONST CHAR16 *Src
)
{
RtStrCpy(Dest+StrLen(Dest), Src);
@@ -76,7 +76,7 @@ RtStrCat (
UINTN
RUNTIMEFUNCTION
RtStrLen (
- IN CHAR16 *s1
+ IN CONST CHAR16 *s1
)
// string length
{
@@ -92,7 +92,7 @@ RtStrLen (
UINTN
RUNTIMEFUNCTION
RtStrSize (
- IN CHAR16 *s1
+ IN CONST CHAR16 *s1
)
// string size
{