diff options
| author | EuAndreh <eu@euandre.org> | 2025-05-10 16:30:42 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2025-05-10 16:39:34 -0300 |
| commit | 2ce4f876734df9adcae7c7d3e558f8bcfd37cb52 (patch) | |
| tree | 9343323c26afb6169c0ea143d516cb089aba91d9 /src | |
| parent | Merge pull request #11 from mvo5/bugfix/fix-tests-on-linux (diff) | |
| download | gotext-2ce4f876734df9adcae7c7d3e558f8bcfd37cb52.tar.gz gotext-2ce4f876734df9adcae7c7d3e558f8bcfd37cb52.tar.xz | |
Setup Go skeleton
Diffstat (limited to 'src')
| -rw-r--r-- | src/gotext.go | 19 | ||||
| -rw-r--r-- | src/main.go | 7 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/gotext.go b/src/gotext.go new file mode 100644 index 0000000..6c3d9fe --- /dev/null +++ b/src/gotext.go @@ -0,0 +1,19 @@ +package gotext + +import ( +) + + + +/* +#define _XOPEN_SOURCE 700 +#include <libintl.h> +*/ +import "C" + +const ( + _ = C.int(1) +) + +func Main() { +} diff --git a/src/main.go b/src/main.go new file mode 100644 index 0000000..8d54981 --- /dev/null +++ b/src/main.go @@ -0,0 +1,7 @@ +package main + +import "gotext" + +func main() { + gotext.Main() +} |
