2014年9月12日金曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の8章(スタティックライブラリとダイナミックライブラリ: ホットスワップ可能なコード)、自分で考えてみよう(p.353)を解いてみる。

その他参考書籍

自分で考えてみよう(p.353)

コード(BBEdit, Emacs)

sample353.c

/* コンパイル出来るように修正 */
#include <stdio.h>

/* 山括弧をダブルクォートに変更 */
#include "encrypt.h"
#include "checksum.h"

int main(int argc, char *argv[])
{
  char s[] = "Speak friend and enter";
  
  encrypt(s);
  printf("'%s'に暗号化しました。\n", s);
  printf("チェックサムは%iです。\n", checksum(s));
  encrypt(s);
  printf("'%s'に復号化しました。\n", s);
  printf("チェックサムは%iです。\n", checksum(s));

  return (0);
}

Makefile

CC=cc
CFLAGS=-g -Wall
SRC=sample353.c encrypt.c checksum.c
OBJ=sample353.o encrypt.o checksum.o

all: sample353

sample353: $(OBJ)
 $(CC) $(CFLAGS) $(OBJ) -o sample353

sample353.o: encrypt.h checksum.h sample353.c
 $(CC) $(CFLAGS) -c sample353.c -o sample353.o

clear:
 rm -rf sample353 $(OBJ)

入出力結果(Terminal)

 make && ./sample353 
cc -g -Wall -c sample353.c -o sample353.o
cc -g -Wall sample353.o encrypt.o checksum.o -o sample353
'Loz~t?ymvzq{?~q{?zqkzm'に暗号化しました。
チェックサムは89561741です。
'Speak friend and enter'に復号化しました。
チェックサムは89548156です。
$

0 コメント:

コメントを投稿