文章分類 «C» :

uemacs 的加密功能

日期: 分類: «C» 作者: ols3

uemacs 的加密功能:

uemacs crypt function

/*  CRYPT.C
 *
 *  Encryption routines
 *
 *  written by Dana Hoggatt and Daniel Lawrence
 */

#include    <stdio.h>
#include    "estruct.h"
#include    "edef.h"
#include        "efunc.h"

#if CRYPT

static int mod95(int);

/*
 * reset encryption key of current buffer
 *
 * int f;       default flag
 * int n;       numeric argument
 */
int …

uemacs 中文可用版 4.0.15.1 tw

日期: 分類: «C» 作者: ols3

我是重度的 Emacs 編輯器的使用者, 過去出版的書籍全都是在 Emacs 中完成的; 但 Emacs 太厚重, 在遠端跨主機工作不方便, 輕便的 uemacs 便 …

紀念 C 語言之父 Dennis Ritchie

日期: 分類: «C» 作者: ols3

10 月 12 日

紀念 C 語言之父 Dennis Ritchie (1941/9/9-2011/10/12)

一個低調又有個性的傳奇人物!!!

通過博士學位審查, 因不願支付不公平的論 …

測試 code block

日期: 分類: «C» 作者: ols3

測試 C 語言的 code block:

/*
    C socket server example
*/

#include<stdio.h>
#include<string.h>    //strlen
#include<sys/socket.h>
#include<arpa/inet.h> //inet_addr
#include<unistd.h>    //write

int main(int argc , char *argv[])
{
    int socket_desc , client_sock , c , read_size;
    struct sockaddr_in server , client;
    char client_message[2000 …