/-----------------------------------------------------------------------------\
| benc - tool for working with bencoded files                                 |
|  version: 0.0.2                                                             |
\-----------------------by Przemysaw 'Przemoc' Paweczyk <przemoc@gmail.com>-/

/-------------\
| Description |

benc is tool for working with bencoded files. It translates a given file
between bencoded and text modes. The text file it produces is far more
human-alterable than the bencoded version.

/-------\
| Hints |

Any occurence of apostrophe (') and backslash (\) in string from bencoded file
is preceded by backslash (\) in text file. String from text file starts with 
apostrophe (') and ends with apostrophe (').
In text file every opening apostrophe must have closing apostrophe.

E.g.:
  'abc''def'   - incorrect, lack of preceding backslashes
  'ef\\\'gh'   - correct, length = 6
  'ef\\\a'     - incorrect, backslash precedes incorrect character

/-------\
| Usage |

Run benc.

/--------------\
| Installation |

See INSTALL file.

/-----------\
| ChangeLog |

See ChangeLog file.

