@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main(){
+ return 0;
+}
@@ -0,0 +1,18 @@
+#include "stdio.h"
+unsigned int time33(char *);
+ char str[] = "2";
+ int res;
+ res = time33(str);
+ printf("%d\n", res);
+unsigned int time33(char *str){
+ unsigned int hash = 5381;
+ while(*str){
+ hash += (hash << 5 ) + (*str++);
+ }
+ return (hash & 0x7FFFFFFF);