project_files/hwc/rtl/misc.c
changeset 10131 4b4a043111f4
parent 10130 a9d509848390
child 10132 701844ed50d3
--- a/project_files/hwc/rtl/misc.c	Tue Feb 11 22:05:03 2014 +0400
+++ b/project_files/hwc/rtl/misc.c	Wed Feb 12 00:50:15 2014 +0400
@@ -171,7 +171,7 @@
     return result;
 }
 
-astring fpcrtl_str2astr(string255 s)
+astring fpcrtl_str2astr(const string255 s)
 {
     astring result;
 
@@ -181,7 +181,7 @@
     return result;
 }
 
-string255 fpcrtl_astr2str(astring s)
+string255 fpcrtl_astr2str(const astring s)
 {
     string255 result;
 
@@ -193,7 +193,7 @@
 
 char __pcharBuf[256];
 
-char* fpcrtl__pchar__vars(string255 * s)
+char* fpcrtl__pchar__vars(const string255 * s)
 {
     memcpy(__pcharBuf, &s->s[1], s->len);
     __pcharBuf[s->len] = 0;