]> granicus.if.org Git - fcron/commitdiff
added Set macro
authorthib <thib>
Fri, 22 Jun 2001 21:08:43 +0000 (21:08 +0000)
committerthib <thib>
Fri, 22 Jun 2001 21:08:43 +0000 (21:08 +0000)
Skip_blanks moved from fcrontab.h to global.h

global.h

index c1e13321aa98d6143f9cb2a67b98808cb08e66f9..6032823018045b963a06af394c28eb341e1cb362 100644 (file)
--- a/global.h
+++ b/global.h
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: global.h,v 1.29 2001-06-03 10:57:18 thib Exp $ */
+ /* $Id: global.h,v 1.30 2001-06-22 21:08:43 thib Exp $ */
 
 
 /* 
         if( (ptr = calloc(1, sizeof(type))) == NULL ) \
             die_e("Could not calloc.");
 
+#define Set(var, value) \
+          free(var); \
+          var = strdup2(value);
+
+#define Skip_blanks(ptr) \
+        while((*ptr == ' ') || (*ptr == '\t')) \
+           ptr++;
+
+
 #define debug if(debug_opt) Debug
 
 typedef struct env_t {