diff options
author | rbuj <[email protected]> | 2019-09-01 20:41:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-10 21:19:07 +0200 |
commit | 29b945fd67d1e7eb93cfe66d089977d064c7f7bc (patch) | |
tree | ecdeac447d0b8ccef586b3e68a2d7f52fd54d81f /src/glib-utils.h | |
parent | 758b9d3a9587816b0a6837fdc8dcb3bf1c33dea9 (diff) | |
download | engrampa-29b945fd67d1e7eb93cfe66d089977d064c7f7bc.tar.bz2 engrampa-29b945fd67d1e7eb93cfe66d089977d064c7f7bc.tar.xz |
glib-utils: Remove get_time_string()
get_time_string() is a local function that wraps strftime().
In contrast to strftime(), g_date_time_format() always produces
an UTF-8 string, regardless of the current locale.
Diffstat (limited to 'src/glib-utils.h')
-rw-r--r-- | src/glib-utils.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/glib-utils.h b/src/glib-utils.h index 59a327f..674a17e 100644 --- a/src/glib-utils.h +++ b/src/glib-utils.h @@ -65,7 +65,6 @@ char ** split_line (const char *line, const char * get_last_field (const char *line, int last_field); int n_fields (char **str_array); -char * get_time_string (time_t time); void g_ptr_array_free_full (GPtrArray *array, GFunc func, gpointer user_data); |