diff options
author | rbuj <[email protected]> | 2021-10-27 17:40:17 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-11 15:59:33 +0100 |
commit | 6c55334ad9b03006686e2db6c6f6167677a2f510 (patch) | |
tree | b558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/open-file.c | |
parent | 85909393571d91b3c267afe5341e54bfae5a6d50 (diff) | |
download | engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2 engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz |
Use a blank line at most
Diffstat (limited to 'src/open-file.c')
-rw-r--r-- | src/open-file.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/open-file.c b/src/open-file.c index ceda1d3..ef4a039 100644 --- a/src/open-file.c +++ b/src/open-file.c @@ -24,7 +24,6 @@ #include "open-file.h" #include "file-utils.h" - OpenFile* open_file_new (const char *path, const char *extracted_path, @@ -45,7 +44,6 @@ open_file_new (const char *path, return ofile; } - void open_file_free (OpenFile *ofile) { @@ -59,7 +57,6 @@ open_file_free (OpenFile *ofile) g_free (ofile); } - OpenFile * open_file_copy (OpenFile *src) { @@ -74,7 +71,6 @@ open_file_copy (OpenFile *src) return ofile; } - GType open_file_get_type (void) { |