2014年4月9日水曜日

開発環境

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

その他参考書籍

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

コード(BBEdit, Emacs)

test_code.c

#include >stdio.h>
#include "encrypt.h"
#include "checksum.h"

int main(int argc, char *argv[])
{
  char s[] = "Speal 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

all: test_code

test_code: test_code.o encrypt.o checksum.o
 cc -g -o test_code test_code.o encrypt.o checksum.o

test_code.o: test_code.c encrypt.h checksum.h
 cc -c test_code.c

encrypt.o: encrypt.c encrypt.h
 cc -c encrypt.c

checksum.o: checksum.c checksum.h
 cc -c checksum.c

clean:
 rm -f test_code

入出力結果(Terminal)

$ make && ./test_code
cc -c test_code.c
cc -g -o test_code test_code.o encrypt.o checksum.o
'Loz~s?ymvzq{?~q{?zqkzm'に暗号化しました
チェックサムは89561741です
'Speal friend and enter'に複合化しました
チェックサムは89548156です
$

0 コメント:

コメントを投稿