/deps/iconv/src/iconv_app.erl

https://code.google.com/p/zotonic/ · Erlang · 10 lines · 6 code · 4 blank · 0 comment · 0 complexity · a0efa58c1113706ab6249c0892479340 MD5 · raw file

  1. -module(iconv_app).
  2. -export([start/2, stop/0]).
  3. start(normal, []) ->
  4. iconv:start().
  5. stop() ->
  6. iconv:stop().