summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec')
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2deca.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2decs.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2deca.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2decs.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2deca.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2decs.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2deca.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2decs.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2deca.c11
-rw-r--r--2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2decs.c11
10 files changed, 110 insertions, 0 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2deca.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2deca.c
index 6bb5d00f..e3619eb3 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2deca.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2deca.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include "oct2dec.h"
void doct2deca(double* in,int size,double* out)
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2decs.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2decs.c
index 8f9f0b65..b126c619 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2decs.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/doct2decs.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include <string.h>
#include "oct2dec.h"
#include <stdio.h>
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2deca.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2deca.c
index 1ab843f8..9db3e2e1 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2deca.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2deca.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include "oct2dec.h"
void i16oct2deca(int16* in,int size,int16* out)
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2decs.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2decs.c
index ea092852..928c3a2a 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2decs.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i16oct2decs.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include <string.h>
#include "oct2dec.h"
#include <stdio.h>
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2deca.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2deca.c
index 133806ce..de57a0ea 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2deca.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2deca.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include "oct2dec.h"
void i8oct2deca(int8* in,int size,int8* out)
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2decs.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2decs.c
index 1886739a..b95a0426 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2decs.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/i8oct2decs.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include <string.h>
#include "oct2dec.h"
#include <stdio.h>
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2deca.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2deca.c
index cec3a219..7778ee96 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2deca.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2deca.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include "oct2dec.h"
void u16oct2deca(uint16* in,int size,uint16* out)
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2decs.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2decs.c
index 43dd0ac0..4b30443e 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2decs.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u16oct2decs.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include <string.h>
#include "oct2dec.h"
#include <stdio.h>
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2deca.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2deca.c
index 3b356587..d1880203 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2deca.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2deca.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include "oct2dec.h"
void u8oct2deca(uint8* in,int size,uint8* out)
diff --git a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2decs.c b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2decs.c
index c854bc25..f804f7fd 100644
--- a/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2decs.c
+++ b/2.3-1/src/c/elementaryFunctions/radix_conversions/oct2dec/u8oct2decs.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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
+ Organization: FOSSEE, IIT Bombay
+ Author: Shamik Guha
+ Email: toolbox@scilab.in
+*/
#include <string.h>
#include "oct2dec.h"
#include <stdio.h>