Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree


Ignore:
Timestamp:
08/26/10 16:54:09 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree

    v1 v2  
    1212== Return Value ==
    1313
    14 This function returns the number of bytes of RAM is available in the system.
     14This function returns the number of K bytes of RAM is available in the system.
    1515
    1616== Remarks ==
     
    2121
    2222{{{
    23 string str = StrFmt("Free memory %d", GetMemFree());
     23string str = StrFmt("Free memory %d K bytes", GetMemFree());
    2424DisplayText(0, 0, str);
    2525}}}