f_str_isnull.srf 387 B

12345678910111213141516
  1. $PBExportHeader$f_str_isnull.srf
  2. $PBExportComments$By PBKiller v2.5.18(http://kivens.nease.net)
  3. global type f_str_isnull from function_object
  4. end type
  5. forward prototypes
  6. global function boolean f_str_isnull (string str)
  7. end prototypes
  8. global function boolean f_str_isnull (string str);if ((isnull(str)) or (trim(str) = "")) then
  9. return true
  10. else
  11. return false
  12. end if
  13. end function