aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.h
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
commitc6372a1b3f56d7022f135b8f1baeaff44816ec7c (patch)
tree1e274b07fc1942d7f39d334771c7d621a164b15f /function.h
parent41b8db063c032c673e366d81bccf37022b9c1d4f (diff)
remove trailing spaces
This is done by `sed -i -e 's/[ \t]*$//' *.[c,h]`, which should not introduce any functionality change.
Diffstat (limited to 'function.h')
-rw-r--r--function.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/function.h b/function.h
index 7e172948..9e5643fc 100644
--- a/function.h
+++ b/function.h
@@ -1,4 +1,4 @@
-/** \file function.h
+/** \file function.h
Prototypes for functions for storing and retrieving function
information. These functions also take care of autoloading
@@ -53,7 +53,7 @@ typedef struct function_data
/**
- Initialize function data
+ Initialize function data
*/
void function_init();
@@ -96,11 +96,11 @@ int function_exists( const wchar_t *name );
/**
Insert all function names into l. These are not copies of the
strings and should not be freed after use.
-
+
\param list the list to add the names to
\param get_hidden whether to include hidden functions, i.e. ones starting with an underscore
*/
-void function_get_names( array_list_t *list,
+void function_get_names( array_list_t *list,
int get_hidden );
/**