MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / get_file_modification_time

Function get_file_modification_time

gtk/src/callbacks.c:841–854  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839}
840
841static char *
842get_file_modification_time (const char *filename)
843{
844 char *result = NULL;
845 GDateTime *datetime;
846
847 datetime = get_file_modification_date_time(filename);
848 if (datetime != NULL)
849 {
850 result = g_date_time_format(datetime, "%H:%M");
851 g_date_time_unref(datetime);
852 }
853 return result;
854}
855
856static void
857set_destination_settings(signal_user_data_t *ud, GhbValue *settings)

Callers 1

set_destination_settingsFunction · 0.85

Calls 1

Tested by

no test coverage detected