From 03e1da1bb5c5f2cf0ad6daaca6c90a7164c02726 Mon Sep 17 00:00:00 2001 From: ssmith Date: Tue, 16 May 2006 20:19:20 -0700 Subject: Add header comments --- bencode.erl | 9 +++++++++ tests.erl | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/bencode.erl b/bencode.erl index a04c3a8..2dd4a13 100644 --- a/bencode.erl +++ b/bencode.erl @@ -1,3 +1,12 @@ +%% +%% Basic Bencode (Bittorrent) encoder. The details of the encoding +%% are available here: http://bittorrent.org/protocol.html +%% Technically this probably isn't fully compliant as it's not UTF8, +%% but probably won't matter in simple cases. +%% +%% Author: Steve Smith +%% License: LGPL 2.1 +%% -module(bencode). diff --git a/tests.erl b/tests.erl index 60b5227..e1e41aa 100644 --- a/tests.erl +++ b/tests.erl @@ -1,3 +1,9 @@ +%% +%% Basic Eunit-based test suite for bencode.erl +%% +%% Author: Steve Smith +%% License: LGPL 2.1 +%% -module(tests). -- cgit v1.2.3