Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions libxml2/xmlstring.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,8 @@ func (recv_ *Char) StrncatNew(str2 *Char, len c.Int) *Char {
return nil
}

// llgo:link (*Char).StrPrintf C.xmlStrPrintf
func (recv_ *Char) StrPrintf(len c.Int, msg *c.Char, __llgo_va_list ...interface{}) c.Int {
return 0
}
//go:linkname StrPrintf C.xmlStrPrintf
func StrPrintf(buf *Char, len c.Int, msg *c.Char, __llgo_va_list ...interface{}) c.Int
Comment thread
MeteorsLiu marked this conversation as resolved.

Comment thread
MeteorsLiu marked this conversation as resolved.
// llgo:link (*Char).StrVPrintf C.xmlStrVPrintf
func (recv_ *Char) StrVPrintf(len c.Int, msg *c.Char, ap c.VaList) c.Int {
Expand Down
Loading