Displaying 1 result from an estimated 1 matches for "main_say".
Did you mean:
main_map
2017 Jul 01
0
[PATCH] Add new hash.c32 module
...clude <string.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <console.h>
+#include <com32.h>
+#include <md5.h>
+#include <syslinux/config.h>
+/* FIXME: Do we really need disk.h? */
+#include <syslinux/disk.h>
+
+/* FIXME: Do we really need 'main_say()'? */
+static int main_say(int argc, char **argv)
+{
+ int i;
+ for (i = 1; i < argc; i++) {
+ printf("%s ",argv[i]);
+ }
+ printf("\n");
+ sleep(5);
+ return 0;
+}
+
+/*
+ * Based on busybox code.
+ *
+ * Compute MD5 checksum of strings according to the
+ * definition...