RosettaCodeData/Task/Use-another-language-to-call-a-function/Go/use-another-language-to-call-a-function-1.go
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

10 lines
164 B
Go

#include <stdio.h>
#include "_cgo_export.h"
void Run()
{
char Buffer [1024];
size_t Size = sizeof (Buffer);
if (0 == Query (Buffer, &Size))
...