2012年10月15日

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 RTFSC 阅读(1097) 评论(0) 推荐(0) 编辑

导航