From 7e9ffb6b095fff756dec717f337e6a6aa42dd208 Mon Sep 17 00:00:00 2001 From: "P. F. Chimento" Date: Mon, 22 Apr 2013 13:43:11 +0200 Subject: Rename C source and header files For consistency with GTK, blah.[ch] should be named eosblah.[ch]. [#23] --- endless/eoshello.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 endless/eoshello.c (limited to 'endless/eoshello.c') diff --git a/endless/eoshello.c b/endless/eoshello.c new file mode 100644 index 0000000..83be05a --- /dev/null +++ b/endless/eoshello.c @@ -0,0 +1,70 @@ +/* Copyright 2013 Endless Mobile, Inc. */ + +#include +#include +#include +#include +#include + +#include + +/** + * SECTION:hello + * @short_description: Sample skeleton function + * @title: Hello + * + * This is a sample skeleton function that says hello either to the terminal or + * a file. + */ + +/** + * eos_hello_sample_function: + * @file: (allow-none): #GFile to write to, or %NULL + * @error: (allow-none): Return location for a #GError, or %NULL to ignore. + * + * A sample API function to say hello with. Prints on the terminal if @file is + * %NULL, or else appends it to @file. + * + * Returns: %TRUE on success, %FALSE on error. + */ +gboolean +eos_hello_sample_function(GFile *file, + GError **error) +{ + char *hello_string = _("Hello, world!\n"); + GFileOutputStream *stream; + ssize_t write_count; + gboolean success; + + g_return_val_if_fail (G_IS_FILE (file) || file == NULL, FALSE); + g_return_val_if_fail (error == NULL || *error == NULL, FALSE); + + /* Print to terminal */ + if (file == NULL) + { + g_print ("%s", hello_string); + return TRUE; + } + + stream = g_file_append_to (file, + G_FILE_CREATE_NONE, + NULL, /* cancellable */ + error); + if(!stream) + return FALSE; + + write_count = g_output_stream_write (G_OUTPUT_STREAM (stream), + hello_string, + strlen (hello_string), + NULL, /* cancellable */ + error); + success = g_output_stream_close (G_OUTPUT_STREAM (stream), + NULL, /* cancellable */ + error); + g_object_unref (stream); + + if (write_count == -1 || !success) + return FALSE; + + return TRUE; +} -- cgit v1.2.3