Yann Weber 7 years ago
parent
commit
8684cc7b38

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

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

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

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

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

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

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

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

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

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

+ 18
- 0
src/main.c View File

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

+ 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
-}

+ 18
- 0
src/ttail_init.c View File

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

+ 18
- 0
src/ttail_search.c View File

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

+ 18
- 0
src/ttail_search_files.c View File

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

+ 18
- 0
src/ttail_search_std.c View File

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

Loading…
Cancel
Save