#include "scbpoint.h"#include "scbtype.h"#include "scblog.h"#include <stdio.h>Go to the source code of this file.
Functions | |
| void | scb_point_dump (const ScbPointPtr p) |
| void scb_point_dump | ( | const ScbPointPtr | p | ) |
Copyright (C) 2005-2008 iRex Technologies B.V. All rights reserved.
Definition at line 70 of file scbpoint.c.
00071 { 00072 SCB_RET_IF(p == NULL, "NULL pointer!"); 00073 SCB_DUMP("(%d, %d)", p->x, p->y); 00074 }
1.5.6