[TF] mylib summery
Brought to you by:
kenkeys
|
From: tinyfugue at attbi.c. (Galvin) - 2003-03-29 08:22:11
|
get_array() / get_2array() Retrieves data from a virtual array. ----------------------------------------------- put_array() / put_2array() Stores data into a virtual array ----------------------------------------------- tfwrite_array() / tfwrite_2array() Writes a virtual array to a disk file. ----------------------------------------------- tfread_array() / tfread_2array() reads an array file from disk ----------------------------------------------- strstr_array() / strstr_2array() Searches for a value in a virtual array and returns what element its found in. ----------------------------------------------- purge_array() Purges a virtual array made by get_array() and put_array() ----------------------------------------------- chr2chr() Changes one character to difference character in a string ----------------------------------------------- add_rec() Adds a record to an existing record or creates a new record. ----------------------------------------------- get_rec() gets a record and returns its value ----------------------------------------------- /rec Allows you to use records like variables without using add_rec() or get_rec() ----------------------------------------------- del_rec() Deletes a record from a specified root. ----------------------------------------------- tfwrite_rec() Writes a record or records to a disk file. ----------------------------------------------- tfread_rec() Reads records from disk written by tfwrite_rec() ----------------------------------------------- list_rec() List a set records created with add_rec() with their values. ----------------------------------------------- tfwrite_vars() Write variables to a disk file. ----------------------------------------------- tfread_vars() Reads variables to a from a disk file that was written by tfwrite_vars() ----------------------------------------------- delay() Delays an X number of seconds before returning. ----------------------------------------------- get_time() returns hours, minutes, seconds in integer format ----------------------------------------------- get_time() returns hours, minutes, seconds in seconds ----------------------------------------------- time2sec() converts hours, min, sec to total seconds ----------------------------------------------- sec2time() converts total seconds back into hours, min, sec ----------------------------------------------- sec2clock() similar to sec2time except it turns seconds into a clock reading AM/PM ----------------------------------------------- num2commas() returns a number formatted with comma's ----------------------------------------------- send_macro() Sends a macro to tinyfugue ----------------------------------------------- strip_space() Strips all leading spaces from a string. ----------------------------------------------- parse_string() This function will parse a string by the separator you choose and place the elements back into an array of your choosing. ----------------------------------------------- search_literal() Search for a character in a string of characters. Characters will be skipped in the string that start with a literal-switch. The position of the character found will be based on the string returned with no literal switches. ----------------------------------------------- find_string() Finds a string within a string and return the starting position, end position and length in a virtual array. ----------------------------------------------- search_replace() Searches for a string and replaces each occurrence with a new string. |