]> Pileus Git - lackey/blobdiff - src/util.h
Add event selection to day and week views
[lackey] / src / util.h
index 57e7afca2ddb631f7df984fc8b8cd36a6f1b81ce..4f5d16e7dd0610658163448513780fbc0e02202d 100644 (file)
@@ -1,44 +1,44 @@
-/* Types */
-typedef int year_t;
-typedef int day_t;
+/*
+ * Copyright (C) 2012-2013 Andy Spencer <andy753421@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 
-typedef enum {
-       JAN =  0,
-       FEB =  1,
-       MAR =  2,
-       APR =  3,
-       MAY =  4,
-       JUN =  5,
-       JUL =  6,
-       AUG =  7,
-       SEP =  8,
-       OCT =  9,
-       NOV = 10,
-       DEC = 11,
-} month_t;
+/* Macros */
+#define ABS(a)   ((a) > 0 ? (a) : -(a))
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#define MAX(a,b) ((a) > (b) ? (a) : (b))
+#define CLAMP(x,l,h) MIN(MAX(x,l),h)
+#define ROUND(x) ((int)((x)+0.5))
+#define N_ELEMENTS(x) (sizeof(x)/sizeof((x)[0]))
 
-typedef enum {
-       SUN = 0,
-       MON = 1,
-       TUE = 2,
-       WED = 3,
-       THU = 4,
-       FRI = 5,
-       SAT = 6,
-} wday_t;
+#define new0(type) alloc0(sizeof(type))
 
-/* Time functions */
-int days_in_year(year_t year);
-int days_in_month(year_t year, month_t month);
-int weeks_in_month(year_t year, month_t month);
-wday_t start_of_month(year_t year, month_t month);
+/* Debug functions */
+void util_init(void);
 
-/* String functions */
-const char *month_to_str(month_t month);
-const char *month_to_string(month_t month);
-const char *day_to_st(wday_t day);
-const char *day_to_str(wday_t day);
-const char *day_to_string(wday_t day);
+/* Stirng functions */
+void strsub(char *str, char find, char repl);
+char *strcopy(const char *str);
+int match(const char *a, const char *b);
 
-/* Tests */
-void test_time(void);
+/* Memory functions */
+void *alloc0(int size);
+
+/* File functions */
+char *read_file(const char *path, int *len);
+
+/* Debug functions */
+void debug(char *fmt, ...);
+void error(char *fmt, ...);