原创 behemoth - 00

#include <stdio.h> #include <unistd.h> #include <string.h> int main(int argc, char *argv[]) { char pw[64]; char key[

原创 narnia7

/** narnia7.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 線程池的實現(c語言)

/** threadpool.h */ #include <pthread.h> struct job { void *(*callback_function)(void *arg); //線程回調函數 void *arg;

原创 narnia2

/** narnia2.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 narnia1

/** narnia1.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 narnia5

/** narnia5.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 胡適:易卜生主義

        一      易卜生最後所作的《我們死人再生時》(whenWeDeadAwaken)一本戲裏面有一段話,狠可表出易卜生所作文學的根本

原创 narnia0

/* narnia0.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of t

原创 behemoth - 03

#include <stdio.h> int main(int argc, char *argv[]) { char buf[200]; printf("Identify yourself: "); fgets(buf, 20

原创 behemoth - 01

#include <stdio.h> int main(int argc, char *argv[]) { char buf[64]; printf("Password: "); gets(buf); puts("Auth

原创 behemoth - 05

#include <string.h> #include <stdlib.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include

原创 胡適:非個人主義的新生活

        這個題目是我在山東道上想着的,後來曾在天津學生聯合會的學術講演會講過一次,又在唐山的學術講演會講過一次。唐山的演稿由一位劉贊清君記出

原创 narnia6

/** narnia6.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 narnia3

/** narnia3.c */ /* This program is free software; you can redistribute it and/or modify it under the terms of

原创 behemoth - 02

#include <stdio.h> #include <unistd.h> #include <sys/stat.h> int main(int argc, char *argv[]) { struct stat filestat;