util.inc 738 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. Function IntToStr (I : Longint) : String;
  12. begin
  13. Str(I,Result);
  14. end;
  15. function IsValidIdent(const Ident: string): Boolean;
  16. begin
  17. Result:=True;
  18. end;
  19. {
  20. $Log$
  21. Revision 1.2 2000-07-13 11:33:01 michael
  22. + removed logs
  23. }