Expose IsTest Method (#1)

This commit is contained in:
Utsav Chokshi
2022-03-01 14:28:53 +05:30
committed by GitHub
parent 81f5d81b7b
commit 821f01cdde
3 changed files with 23 additions and 0 deletions

View File

@ -136,6 +136,11 @@ func GetColor(language string) string {
return enry.GetColor(language)
}
//export IsTest
func IsTest(path string) bool {
return enry.IsTest(path)
}
func strSliceCopy(result *[]*C.char, slice []string) {
for _, str := range slice {
*result = append(*result, C.CString(str))