From 2fa46317bdd4da077d932c58a150cecf08248be2 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Thu, 12 Jan 2017 23:33:06 +0100 Subject: Update copyright headers. --- src/atomic.erl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/atomic.erl') diff --git a/src/atomic.erl b/src/atomic.erl index 36fba81..580fd17 100644 --- a/src/atomic.erl +++ b/src/atomic.erl @@ -2,7 +2,7 @@ %%% See LICENSE for licensing information. -module(atomic). --export([replacefile/2, readfile/1]). +-export([replacefile/2, readfile/1, openfile/2, readline/1]). -spec replacefile(string(), binary()) -> ok. replacefile(Path, Content) -> @@ -20,3 +20,9 @@ readfile(Path) -> {error, Error} -> util:exit_with_error(readfile, Error, "Error reading file") end. + +openfile(Path, Modes) -> + file:open(Path, Modes). + +readline(IoDevice) -> + file:read_line(IoDevice). -- cgit v1.1