diff options
Diffstat (limited to 'src/c/elementaryFunctions/radix_conversions/dec2oct')
10 files changed, 110 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octa.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octa.c index 03fc2dc..f6cbcfe 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octa.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octa.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 "dec2oct.h" void ddec2octa(double* in,int size,double* out) diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octs.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octs.c index d06da30..702f186 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octs.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/ddec2octs.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 <math.h> #include "dec2oct.h" diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octa.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octa.c index 882b00b..fec152c 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octa.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octa.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 "dec2oct.h" void i16dec2octa(int16* in,int size,int16* out) diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octs.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octs.c index cb08845..340958f 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octs.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/i16dec2octs.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 <math.h> #include "dec2oct.h" diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octa.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octa.c index 221f486..0c96f01 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octa.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octa.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 "dec2oct.h" void i8dec2octa(int8* in,int size,int8* out) diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octs.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octs.c index 30ae5b0..0a35f94 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octs.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/i8dec2octs.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 <math.h> #include "dec2oct.h" diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octa.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octa.c index cc0d543..7a3e60e 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octa.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octa.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 "dec2oct.h" void u16dec2octa(uint16* in,int size,uint16* out) diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octs.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octs.c index 4b0bd59..99936b4 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octs.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/u16dec2octs.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 <math.h> #include "dec2oct.h" diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octa.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octa.c index c187077..1a4e026 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octa.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octa.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 "dec2oct.h" void u8dec2octa(uint8* in,int size,uint8* out) diff --git a/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octs.c b/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octs.c index 9348630..fbfc104 100644 --- a/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octs.c +++ b/src/c/elementaryFunctions/radix_conversions/dec2oct/u8dec2octs.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 <math.h> #include "dec2oct.h" |