Sha256: 03b25141bbf7a12919ffab3d3b94558448dcb8f3519d1e0e8d0481dd60944eb5

Contents?: true

Size: 394 Bytes

Versions: 2

Compression:

Stored size: 394 Bytes

Contents

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "bar.h"

int foo (int a, int b);

/*
 * We use tab characters for test purpose. gonzui internally
 * converts tab characters into spaces and we need to test
 * the effect.
 */
int 
main (int argc, char **argv)
{
	printf("%d\n", foo(1, 2));
	return 0;
}

int
foo (int a, int b)
{
	return bar(a, b);
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gonzui-1.2-x86-mswin32-60 test/foo/foo.c
gonzui-1.2 test/foo/foo.c