Yann Weber 7 years ago
parent
commit
5e75e07c80

+ 16
- 0
src/include/ttail.h View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #ifndef _ttail_h__
2 18
 #define _ttail_h__
3 19
 

+ 16
- 0
src/include/ttail_init.h View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #ifndef _ttail_init_h__
2 18
 #define _ttail_init_h__
3 19
 

+ 16
- 0
src/include/ttail_search.h View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #ifndef _ttail_search_h__
2 18
 #define _ttail_search_h__
3 19
 

+ 16
- 0
src/include/ttail_search_files.h View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #ifndef _ttail_search_files_h__
2 18
 #define _ttail_search_files_h__
3 19
 

+ 16
- 0
src/include/ttail_search_std.h View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #ifndef _ttail_search_std_h__
2 18
 #define _ttail_search_std_h__
3 19
 

+ 16
- 0
src/main.c View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #include "include/ttail.h"
2 18
 #include "include/ttail_init.h"
3 19
 

+ 0
- 8
src/options.c View File

@@ -1,8 +0,0 @@
1
-#include "include/options.h"
2
-
3
-ttail_options *ttail_options_init(int argc, char **argv)
4
-{
5
-	fprintf(stderr,"ttail_options *ttail_options_init(int argc, \
6
-char **argv) Not implemented yet");
7
-	return NULL;
8
-}

+ 16
- 0
src/ttail_init.c View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #include "ttail_init.h"
2 18
 
3 19
 void usage()

+ 16
- 0
src/ttail_search.c View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #include "ttail_search.h"
2 18
 
3 19
 int ttail_search_closest(ttail_t* ttail)

+ 16
- 0
src/ttail_search_files.c View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #include "ttail_search_files.h"
2 18
 
3 19
 int _ttail_search_closest_files(ttail_t* t)

+ 16
- 0
src/ttail_search_std.c View File

@@ -1,3 +1,19 @@
1
+/*
2
+ * This file is part of Ttail.
3
+ * 
4
+ * Ttail is free software: you can redistribute it and/or modify
5
+ * it under the terms of the GNU General Public License as published by
6
+ * the Free Software Foundation, either version 3 of the License, or
7
+ * any later version.
8
+ * 
9
+ * Ttail is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
+ * GNU General Public License for more details.
13
+ * 
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with Ttail.  If not, see <http://www.gnu.org/licenses/>.
16
+ */
1 17
 #include "ttail_search_std.h"
2 18
 
3 19
 int _ttail_search_closest_std_init(ttail_t* t)

Loading…
Cancel
Save