summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/find
diff options
context:
space:
mode:
Diffstat (limited to 'src/auxiliaryFunctions/find')
-rw-r--r--src/auxiliaryFunctions/find/cfinda.c20
-rw-r--r--src/auxiliaryFunctions/find/dfinda.c20
-rw-r--r--src/auxiliaryFunctions/find/sfinda.c20
-rw-r--r--src/auxiliaryFunctions/find/testFind.c20
-rw-r--r--src/auxiliaryFunctions/find/testFind.h21
-rw-r--r--src/auxiliaryFunctions/find/zfinda.c20
6 files changed, 61 insertions, 60 deletions
diff --git a/src/auxiliaryFunctions/find/cfinda.c b/src/auxiliaryFunctions/find/cfinda.c
index bef2ccea..75a621c3 100644
--- a/src/auxiliaryFunctions/find/cfinda.c
+++ b/src/auxiliaryFunctions/find/cfinda.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** cfinda.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Tue Feb 13 16:46:42 2007 jofret
-** Last update Mon Oct 22 15:45:30 2007 bruno
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#include "find.h"
diff --git a/src/auxiliaryFunctions/find/dfinda.c b/src/auxiliaryFunctions/find/dfinda.c
index fbe9ae59..b347d771 100644
--- a/src/auxiliaryFunctions/find/dfinda.c
+++ b/src/auxiliaryFunctions/find/dfinda.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** dfinda.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Tue Feb 13 16:52:23 2007 jofret
-** Last update Tue Apr 24 16:46:12 2007 jofret
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#include "find.h"
diff --git a/src/auxiliaryFunctions/find/sfinda.c b/src/auxiliaryFunctions/find/sfinda.c
index e303de87..f038c9c9 100644
--- a/src/auxiliaryFunctions/find/sfinda.c
+++ b/src/auxiliaryFunctions/find/sfinda.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** sfinda.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Tue Feb 13 16:53:03 2007 jofret
-** Last update Tue Apr 24 16:40:06 2007 jofret
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#include "find.h"
diff --git a/src/auxiliaryFunctions/find/testFind.c b/src/auxiliaryFunctions/find/testFind.c
index 7ed7a908..f191b368 100644
--- a/src/auxiliaryFunctions/find/testFind.c
+++ b/src/auxiliaryFunctions/find/testFind.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** testFind.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Wed Feb 14 15:50:15 2007 jofret
-** Last update Mon Oct 22 15:47:15 2007 bruno
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#include "testFind.h"
diff --git a/src/auxiliaryFunctions/find/testFind.h b/src/auxiliaryFunctions/find/testFind.h
index 56d7d67a..1b257e79 100644
--- a/src/auxiliaryFunctions/find/testFind.h
+++ b/src/auxiliaryFunctions/find/testFind.h
@@ -1,14 +1,15 @@
/*
-** -*- C -*-
-**
-** testFind.h
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Mon Apr 23 16:26:14 2007 jofret
-** Last update Tue Apr 24 16:04:28 2007 jofret
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
+
#ifndef _TESTFIND_H_
#define _TESTFIND_H_
diff --git a/src/auxiliaryFunctions/find/zfinda.c b/src/auxiliaryFunctions/find/zfinda.c
index 5b189d9d..e01d42ca 100644
--- a/src/auxiliaryFunctions/find/zfinda.c
+++ b/src/auxiliaryFunctions/find/zfinda.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** zfinda.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Tue Feb 13 16:51:44 2007 jofret
-** Last update Mon Oct 22 15:45:46 2007 bruno
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#include "find.h"