ReinH (owner)

Revisions

  • 4b641a ReinH Thu Nov 05 14:01:07 -0800 2009
gist: 227453 Download_button fork
public
Public Clone URL: git://gist.github.com/227453.git
Embed All Files: show embed
Erlang #
1
2
3
4
5
uudec(Text) -> << <<(X-32):6>> || <<X:8>> <= Text >>.
 
ydec (<<$=, X, Rest/binary>>) -> <<(X-106 rem 256):8, (ydec(Rest))/binary>>;
ydec (<<X, Rest/binary>>) -> <<(X-42 rem 256):8, (ydec(Rest))/binary>>;
ydec (<<>>) -> <<>>.