Cleaned up README.md formatting

This commit is contained in:
Russtopia 2018-06-27 15:27:12 -07:00
parent a850a7ed13
commit c09f29c34d
1 changed files with 5 additions and 2 deletions

View File

@ -2,13 +2,16 @@ goutmp - Minimal bindings to C stdlib pututmpx(), getutmpx() (/var/log/wtmp) and
Any Go program which allows user shell access should update the standard UNIX files which track user sessions: /var/log/wtmp (for the 'w' and 'who' commands), and /var/log/lastlog (the 'last' and 'lastlog' commands).
```
go doc
package goutmp // import "blitter.com/go/goutmp"
Golang bindings for basic login/utmp accounting
type UtmpEntry struct{ ... }
func Put_lastlog_entry(app string, usr string, host string)
func Unput_utmp(entry UtmpEntry)
type UtmpEntry struct{ ... }
func Put_utmp(user string, host string) UtmpEntry
func Put_utmp(user string, host string) UtmpEntry
```