X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2Fbitwise%2Fcl_I_dpb.cc;h=03dded7a7777520a6081fd3951fe38bd29f829f9;hb=6fdd87f5e762926b273583db2d6440862584596f;hp=fc642255bd82dc6d12047d8cfe459fa6527cdb1a;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/integer/bitwise/cl_I_dpb.cc b/src/integer/bitwise/cl_I_dpb.cc index fc64225..03dded7 100644 --- a/src/integer/bitwise/cl_I_dpb.cc +++ b/src/integer/bitwise/cl_I_dpb.cc @@ -4,14 +4,16 @@ #include "cl_sysdep.h" // Specification. -#include "cl_integer.h" +#include "cln/integer.h" // Implementation. -#include "cl_integer.h" +#include "cln/integer.h" #include "cl_I.h" +namespace cln { + const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b) { // Methode: @@ -19,3 +21,5 @@ const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b) // = (DEPOSIT-FIELD (ASH newbyte p) (byte s p) integer) return deposit_field(ash(newbyte,b.position),n,b); } + +} // namespace cln