summaryrefslogtreecommitdiff
path: root/src/c/elementaryFunctions/bitor/u16bitands.c~
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/elementaryFunctions/bitor/u16bitands.c~')
-rw-r--r--src/c/elementaryFunctions/bitor/u16bitands.c~9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/bitor/u16bitands.c~ b/src/c/elementaryFunctions/bitor/u16bitands.c~
new file mode 100644
index 0000000..7ba73c1
--- /dev/null
+++ b/src/c/elementaryFunctions/bitor/u16bitands.c~
@@ -0,0 +1,9 @@
+/* Scilab2C FOSSEE IITB */
+
+#include "bitand.h"
+
+uint16 u16bitands(uint16 x,uint16 y)
+{
+ return (x & y);
+
+}