| 880 | } |
| 881 | |
| 882 | GhbValue* |
| 883 | ghb_read_settings_file(const gchar *path) |
| 884 | { |
| 885 | GhbValue *gval = NULL; |
| 886 | |
| 887 | if (g_file_test(path, G_FILE_TEST_IS_REGULAR)) |
| 888 | { |
| 889 | gval = ghb_json_parse_file(path); |
| 890 | } |
| 891 | return gval; |
| 892 | } |
| 893 | |
| 894 | #if 0 |
| 895 | // Currently unused, but keeping around just in case... |
no outgoing calls
no test coverage detected