18 lines
411 B
Go
18 lines
411 B
Go
// Copyright 2026 The libsqlite3-go Authors. All rights reserved.
|
|
// Use of the source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package sqlite3
|
|
|
|
import (
|
|
"modernc.org/libc"
|
|
)
|
|
|
|
func ___inline_isnanf(tls *libc.TLS, f float32) int32 {
|
|
return libc.X__inline_isnanf(tls, f)
|
|
}
|
|
|
|
func ___inline_isnan(tls *libc.TLS, f float64) int32 {
|
|
return libc.X__inline_isnand(tls, f)
|
|
}
|