-
utils.h
- External header file
-
utils.c
- Contains useful functions and structures
-
utils_io.c
- Simple pretty printing
utils.h
External header file
By: Marco Roveri
utils.c
Contains useful functions and structures
By: Roberto Cavada
-
Utils_pkg_init()
- Initializes the utils package
-
Utils_pkg_quit()
- De-initializes the utils package
-
Utils_StripPath()
- Returns pathname without path prefix
-
Utils_StripPathNoExtension()
- Returns filename without path and extension
-
Utils_StripPathNoFilenameNoExtension()
- Returns directory part of fpathname without filename and
extension
-
Utils_FreeListOfLists()
- Destroys a list of list
-
()
- Return a string to be used as temporary file
-
Utils_file_exists_in_paths()
- Checks a list of directories for a given file.
-
Utils_file_exists_in_directory()
- Checks for the existence of a file within a directory.
-
Utils_strcasecmp()
- An abstraction over BSD strcasecmp
-
Utils_start_timer()
- Starts a timer whose name is given
-
Utils_stop_timer()
- Stops a timer whose name is given
-
Utils_reset_timer()
- Resets a timer whose name is given
-
Utils_print_timer()
- prints info about a timer whose name is given
-
Utils_str_escape_xml_file()
- Escapes all characters in given string, and dumps them
into the xml file
-
Utils_log2_round()
- Computes the log2 of the given unsigned argument
rounding the result to the closest upper
integer. 0 gives 1 as result.
-
freeListOfLists_aux()
- Private service for Utils_FreeListOfLists
-
hash_timers_init()
- Initializes the hash_timers hash
-
hash_timers_quit_fun_aux()
-
-
hash_timers_quit_fun()
- Deinitializes the hash_timers hash
-
hash_timers_lookup()
- Looks up in the hash_timers hash
-
hash_timers_insert()
- Inserts into the hash_timers hash
utils_io.c
Simple pretty printing
By: Marco Roveri
Routines that provides some simple pretty printing routines.
Last updated on 2012/11/18 14h:37