コード例 #1
0
ファイル: help.go プロジェクト: thebrave/gokogiri
func LibxmlCleanUpParser() {
	// Because of our test structure, this method is called several
	// times during a test run (but it should only be called once
	// during the lifetime of the program).
	once.Do(func() {
		atomic.AddInt32(cleaned, 1)
		C.xmlCleanupParser()
	})
}
コード例 #2
0
ファイル: help.go プロジェクト: victorcoder/gokogiri
func LibxmlCleanUpParser() {
	C.xmlCleanupParser()
}
コード例 #3
0
ファイル: xml_parser.go プロジェクト: paulcadman/golibxml
// xmlCleanupParser
func CleanupParser() {
	C.xmlCleanupParser()
}
コード例 #4
0
ファイル: libxml.go プロジェクト: teejae/go-libxml
func XmlCleanUpParser() {
	C.xmlCleanupParser()
}