]> granicus.if.org Git - postgresql/blobdiff - src/include/access/sdir.h
Update copyright to 2004.
[postgresql] / src / include / access / sdir.h
index cc8826c528c17d37f445c416d6a3aab255f610ee..69ea5105d637c76bc98fc239d6629831bd1d735a 100644 (file)
@@ -1,12 +1,13 @@
 /*-------------------------------------------------------------------------
  *
- * sdir.h--
+ * sdir.h
  *       POSTGRES scan direction definitions.
  *
  *
- * Copyright (c) 1994, Regents of the University of California
+ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: sdir.h,v 1.3 1997/09/07 04:56:12 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/access/sdir.h,v 1.16 2004/08/29 04:13:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -26,32 +27,32 @@ typedef enum ScanDirection
 } ScanDirection;
 
 /*
- * ScanDirectionIsValid --
+ * ScanDirectionIsValid
  *             True iff scan direction is valid.
  */
 #define ScanDirectionIsValid(direction) \
-       ((bool) (BackwardScanDirection <= direction && \
-                        direction <= ForwardScanDirection))
+       ((bool) (BackwardScanDirection <= (direction) && \
+                        (direction) <= ForwardScanDirection))
 
 /*
- * ScanDirectionIsBackward --
+ * ScanDirectionIsBackward
  *             True iff scan direction is backward.
  */
 #define ScanDirectionIsBackward(direction) \
-       ((bool) (direction == BackwardScanDirection))
+       ((bool) ((direction) == BackwardScanDirection))
 
 /*
- * ScanDirectionIsNoMovement --
+ * ScanDirectionIsNoMovement
  *             True iff scan direction indicates no movement.
  */
 #define ScanDirectionIsNoMovement(direction) \
-       ((bool) (direction == NoMovementScanDirection))
+       ((bool) ((direction) == NoMovementScanDirection))
 
 /*
- * ScanDirectionIsForward --
+ * ScanDirectionIsForward
  *             True iff scan direction is forward.
  */
 #define ScanDirectionIsForward(direction) \
-       ((bool) (direction == ForwardScanDirection))
+       ((bool) ((direction) == ForwardScanDirection))
 
-#endif                                                 /* SDIR_H */
+#endif   /* SDIR_H */