go语言解析INI文件
摘要:package main import ( "bufio" "bytes" "io" "os" "unicode" ) const ( stat_none = iota stat_group stat_key stat_value stat_comment ) type Attr struct { Name string Value string Comment string next *Attr } type Element struct { Element string Attr *Attr
阅读全文
posted @ 2012-10-15 22:20
浙公网安备 33010602011771号