Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F24894971
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
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
Details
Attached
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)
Attached To
Mode
rSNIPPETS Snippets
Attached
Detach File
Event Timeline
Log In to Comment