Ejemplo n.º 1
0
int 
main(int argc, char **argv)
{
    printf("Hello world!\n");
    where_am_i();
    exit(0);
}
Ejemplo n.º 2
0
char	*get_line(int a_line)
{
	int line_len;
	int i;
	int floor;
	int even;

	even = 1;
	if (floor % 2)
	{
		even = 0;
	}
	floor = where_am_i(a_line);
	i = 0;
	line_len = 3 + 2 * a_line + (even * 2 *  2 + floor * even);
	while (i < a_line){}
}
Ejemplo n.º 3
0
static void
exitPressed( LiteButton *button, void *ctx )
{
    where_am_i();
    lite_close_window( LITE_WINDOW(ctx) );
}
Ejemplo n.º 4
0
static void
climatePressed( LiteButton *button, void *ctx )
{
    where_am_i();
    loadClimate( LITE_WINDOW(ctx) );
}
Ejemplo n.º 5
0
static void
vehicleInfoPressed( LiteButton *button, void *ctx )
{
    where_am_i();
    loadVinfo( LITE_WINDOW(ctx) );
}