This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cc_plugin( | |
name = 'lda', | |
srcs = ['lda.c'], | |
deps = ['#pthread'] | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/* | |
#include <string.h> | |
void write_int(int *len) { | |
*len = 10; | |
} | |
void write_int_array(int *sizes[]) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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)); | |
} |
NewerOlder