moving src/common to src/
This commit is contained in:
parent
22d7238b36
commit
cfb5e85699
20 changed files with 49 additions and 50 deletions
|
|
@ -18,10 +18,10 @@
|
|||
|
||||
#include "../notify.h"
|
||||
#include "../event.h"
|
||||
#include "../common/xalloc.h"
|
||||
#include "../xalloc.h"
|
||||
#include "../ini/iniparser.h"
|
||||
#include "../common/util.h"
|
||||
#include "../common/debug.h"
|
||||
#include "../util.h"
|
||||
#include "../debug.h"
|
||||
|
||||
typedef struct {
|
||||
char *host;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/debug.h - debugging macros and definitions
|
||||
/* debug.h - debugging macros and definitions
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/die.c - functionality for killing things in creative ways.
|
||||
/* die.c - functionality for killing things in creative ways.
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -13,7 +13,6 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "event.h"
|
||||
#include "common/path.h"
|
||||
|
||||
#define dealloc_data(ev) \
|
||||
if (ev->path) \
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
#include <errno.h>
|
||||
#include <dirent.h>
|
||||
|
||||
#include "common/strbuf.h"
|
||||
#include "common/path.h"
|
||||
#include "common/debug.h"
|
||||
#include "strbuf.h"
|
||||
#include "path.h"
|
||||
#include "debug.h"
|
||||
#include "fscrawl.h"
|
||||
|
||||
#define MAX_DEPTH 0x20
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@
|
|||
#include <sys/ioctl.h>
|
||||
#include <sys/inotify.h>
|
||||
|
||||
#include "common/util.h"
|
||||
#include "util.h"
|
||||
/* red black tree for watch descriptors */
|
||||
#include "common/rbtree.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/path.h"
|
||||
#include "rbtree.h"
|
||||
#include "debug.h"
|
||||
#include "path.h"
|
||||
#include "queue.h"
|
||||
#include "fscrawl.h"
|
||||
#include "notify.h"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/path.c - path handling routines
|
||||
/* path.c - path handling routines
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik.hautakoski@gmail.com>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/path.h - path handling routines
|
||||
/* path.h - path handling routines
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/rbtree.c - red black tree implementation
|
||||
/* rbtree.c - red black tree implementation
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/rbtree.h
|
||||
/* rbtree.h
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/strbuf.c
|
||||
/* strbuf.c
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/strbuf.h
|
||||
/* strbuf.h
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/util.h
|
||||
/* util.h
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/xalloc.c
|
||||
/* xalloc.c
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* common/xalloc.h - stricter memory allocation.
|
||||
/* xalloc.h - stricter memory allocation.
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
Reference in a new issue