Browse Source

+ Cosmetic changes

michael 25 years ago
parent
commit
99f05e1120
1 changed files with 4 additions and 1 deletions
  1. 4 1
      docs/progex/subs.pp

+ 4 - 1
docs/progex/subs.pp

@@ -3,9 +3,12 @@
 }
 library subs;
 
-function SubStr(CString: PChar; FromPos, ToPos: Longint): PChar; cdecl; export;
+function SubStr(CString: PChar;FromPos,ToPos: Longint): PChar; 
+   cdecl; export;
+
 var
   Length: Integer;
+
 begin
   Length := StrLen(CString);
   SubStr := CString + Length;