File: error_yara34.go

package info (click to toggle)
golang-github-hillu-go-yara 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 284 kB
  • sloc: makefile: 2
file content (18 lines) | stat: -rw-r--r-- 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright © 2017 Hilko Bengen <bengen@hilluzination.de>
// All rights reserved.
//
// Use of this source code is governed by the license that can be
// found in the LICENSE file.

// This file contains an additional error code introduced with yara 3.4.0.

// +build !yara3.3

package yara

// #include <yara.h>
import "C"

func init() {
	errorStrings[C.ERROR_EMPTY_STRING] = "empty string"
}