From 0296cf3166e7250191f0e08907b65dad9e665e46 Mon Sep 17 00:00:00 2001 From: imushir Date: Fri, 22 Jan 2016 16:01:46 +0530 Subject: added support of uint8,uint16 for bitwise operators --- 2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~ | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~ (limited to '2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~') diff --git a/2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~ b/2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~ new file mode 100644 index 00000000..eda3ccc6 --- /dev/null +++ b/2.3-1/src/c/elementaryFunctions/bitor/u8bitands.c~ @@ -0,0 +1,9 @@ +/* Scilab2C FOSSEE IITB */ + +#include "bitand.h" + +uint8 u8bitands(uint8 x,uint8 y) +{ + return (x & y); + +} -- cgit