Skip to content

Instantly share code, notes, and snippets.

View jmptrader's full-sized avatar
🏠
Working from home

JM jmptrader

🏠
Working from home
View GitHub Profile
@jmptrader
jmptrader / BUILD
Created January 10, 2017 13:04 — forked from wangkuiyi/BUILD
Go invokes C samples
cc_plugin(
name = 'lda',
srcs = ['lda.c'],
deps = ['#pthread']
)
@jmptrader
jmptrader / cgo-sample.go
Created January 10, 2017 13:02 — forked from 3d0c/cgo-sample.go
cgo samples
package main
/*
#include <string.h>
void write_int(int *len) {
*len = 10;
}
void write_int_array(int *sizes[]) {
@jmptrader
jmptrader / add.c
Created January 10, 2017 13:02 — forked from dbalan/add.c
cgo sample code
#include "add.h"
int add_two_numbers(int x, int y) {
return x + y;
}
int add_fzed_two_numbers(int x, int y) {
return add_two_numbers(FuzzNumber(x),
FuzzNumber(y));
}