Changeset 1041 for trunk/Modelica/Utilities/Strings.mo
- Timestamp:
- 02/07/08 21:11:19 (10 months ago)
- Files:
-
- 1 modified
-
trunk/Modelica/Utilities/Strings.mo (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modelica/Utilities/Strings.mo
r887 r1041 6 6 output Integer result "Number of characters of string"; 7 7 external "C" result= ModelicaStrings_length(string); 8 annotation ( Documentation(info="<html>8 annotation (Library="ModelicaExternalC", Documentation(info="<html> 9 9 <h4>Syntax</h4> 10 10 <blockquote><pre> … … 29 29 external "C" result = 30 30 ModelicaStrings_substring(string,startIndex,endIndex); 31 annotation ( 31 annotation (Library="ModelicaExternalC", 32 32 Documentation(info="<html> 33 33 <h4>Syntax</h4> … … 88 88 output Modelica.Utilities.Types.Compare result "Result of comparison"; 89 89 external "C" result= ModelicaStrings_compare(string1, string2, caseSensitive); 90 annotation ( Documentation(info="<html>90 annotation (Library="ModelicaExternalC", Documentation(info="<html> 91 91 <h4>Syntax</h4> 92 92 <blockquote><pre> … … 1083 1083 output Real number "Value of Real number"; 1084 1084 external "C" ModelicaStrings_scanReal(string, startIndex, unsigned, nextIndex, number); 1085 annotation ( Documentation(info="<html>1085 annotation (Library="ModelicaExternalC",Documentation(info="<html> 1086 1086 <h4>Syntax</h4> 1087 1087 <blockquote><pre> … … 1131 1131 output Integer number "Value of Integer number"; 1132 1132 external "C" ModelicaStrings_scanInteger(string, startIndex, unsigned, nextIndex, number); 1133 annotation ( Documentation(info="<html>1133 annotation (Library="ModelicaExternalC",Documentation(info="<html> 1134 1134 <h4>Syntax</h4> 1135 1135 <blockquote><pre> … … 1176 1176 output String string2 "Value of String token"; 1177 1177 external "C" ModelicaStrings_scanString(string, startIndex, nextIndex, string2); 1178 annotation ( Documentation(info="<html>1178 annotation (Library="ModelicaExternalC",Documentation(info="<html> 1179 1179 <h4>Syntax</h4> 1180 1180 <blockquote><pre> … … 1212 1212 external "C" ModelicaStrings_scanIdentifier(string, startIndex, nextIndex, identifier); 1213 1213 1214 annotation ( Documentation(info="<html>1214 annotation (Library="ModelicaExternalC",Documentation(info="<html> 1215 1215 <h4>Syntax</h4> 1216 1216 <blockquote><pre> … … 1246 1246 output Integer nextIndex; 1247 1247 external "C" nextIndex = ModelicaStrings_skipWhiteSpace(string, startIndex); 1248 annotation ( Documentation(info="<html>1248 annotation (Library="ModelicaExternalC",Documentation(info="<html> 1249 1249 <h4>Syntax</h4> 1250 1250 <blockquote><pre>
