ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/PApp-SQL/SQL.xs
(Generate patch)

Comparing PApp-SQL/SQL.xs (file contents):
Revision 1.1 by root, Sat Oct 21 19:00:53 2000 UTC vs.
Revision 1.2 by root, Tue Oct 24 04:21:45 2000 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#define is_dbh(sv) (sv && SvROK (sv) && sv_derived_from (sv, "DBI::db")) 5#define is_dbh(sv) ((sv) && sv_isobject (sv) && sv_derived_from ((sv), "DBI::db"))
6 6
7typedef struct lru_node { 7typedef struct lru_node {
8 struct lru_node *next; 8 struct lru_node *next;
9 struct lru_node *prev; 9 struct lru_node *prev;
10 U32 hash; 10 U32 hash;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines