Page MenuHomeDevCentral

No OneTemporary

diff --git a/c/program.c b/c/program.c
new file mode 100644
index 0000000..0f7d30b
--- /dev/null
+++ b/c/program.c
@@ -0,0 +1,33 @@
+
+/* -------------------------------------------------------------
+
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ Project: Nasqueron
+ Description:
+ License: BSD-2-Clause
+ ------------------------------------------------------------- */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+/* -------------------------------------------------------------
+
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+/* -------------------------------------------------------------
+ Program entry point
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+int main(int argc, char **argv) {
+ char *foo;
+
+ // Usage: <executable> <foo>
+ if (argc != 2) {
+ fprintf(stderr, "Usage: %s <foo>\n", argv[0]);
+ return 1;
+ }
+
+ foo = argv[1];
+
+ return 0;
+}

File Metadata

Mime Type
text/x-diff
Expires
Wed, Mar 18, 13:26 (14 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3538862
Default Alt Text
(1 KB)

Event Timeline