Just \tkzFindAngle(B,O,C) instead of \tkzFindAngle(C,O,B) but I worked with my new version. If you have a problem I can upload a beta version on my site.
\documentclass{article}
\usepackage[usenames,dvipsnames,svgnames]{xcolor}
\usepackage{tikz-dimline}
\usepackage{tkz-euclide}
\usetkzobj{all}
\definecolor{fondpaille}{cmyk}{0,0,0.1,0}
\pagecolor{fondpaille}
\color{Maroon}
\makeatletter
%<--------------------------------------------------------------------------–>
% thanks karu : http://tex.stackexchange.com/questions/151667/tkzgetangle-strange-behavior/196224#196224 \tkzGetAngle strange behavior
% defines \tkz@FirstAngle and \tkz@SecondAngle sens trigo
%<--------------------------------------------------------------------------–>
\def\tkzNormalizeAngle(#1,#2){%
\begingroup
\pgfmathparse{#1}\xdef\tkz@FirstAngle{\pgfmathresult}%
\pgfmathparse{#2}\xdef\tkz@SecondAngle{\pgfmathresult}%
\pgfmathgreaterthan{\tkz@FirstAngle}{0}
\ifdim\pgfmathresult pt=1 pt\relax%
\pgfmathgreaterthan{\tkz@FirstAngle}{\tkz@SecondAngle}
\ifdim\pgfmathresult pt=1 pt\relax%
\pgfmathsubtract{\tkz@FirstAngle}{360}
\xdef\tkz@FirstAngle{\pgfmathresult}%
\fi
\else
\pgfmathgreaterthan{\tkz@FirstAngle}{\tkz@SecondAngle}
\ifdim\pgfmathresult pt=1 pt\relax%
\pgfmathadd{\tkz@SecondAngle}{360}
\xdef\tkz@SecondAngle{\pgfmathresult}%
\fi
\fi
\endgroup
}
%<--------------------------------------------------------------------------–>
% Angle
%<--------------------------------------------------------------------------–>
\def\tkzFindSlopeAngle(#1,#2){%
\begingroup
\tkzmathanglebetweenpoints{\pgfpointanchor{#1}{center}}{%
\pgfpointanchor{#2}{center}}
\global\let\tkzAngleResult\pgfmathresult
\endgroup
}
%<--------------------------------------------------------------------------–>
% Angle avec trois nodes
%<--------------------------------------------------------------------------–>
\def\tkzFindAngle(#1,#2,#3){% new code 2016
\begingroup
\tkzFindSlopeAngle(#2,#1)\tkzGetAngle{tkz@FirstAngle}
\tkzFindSlopeAngle(#2,#3)\tkzGetAngle{tkz@SecondAngle}
\tkzNormalizeAngle(\tkz@FirstAngle,\tkz@SecondAngle)
\FPadd\tkz@Angle{\tkz@SecondAngle}{-\tkz@FirstAngle}
\global\let\tkzAngleResult\tkz@Angle
\endgroup
}
%<--------------------------------------------------------------------------–>
% Find angle
%<--------------------------------------------------------------------------–>
\def\tkzGetAngle#1{%
\global\expandafter\edef\csname #1\endcsname{\tkzAngleResult}
}
\makeatother
\begin{document}
\begin{tikzpicture}[scale=1.0]
\tkzInit
\pgfmathsetmacro{\Radius}{2}
\tkzDefPoint(0,0){O}
\tkzDefPoint(20:\Radius){A}
\tkzDefPoint(100:\Radius){B}
\tkzDefPoint(-150:\Radius){C}
\tkzDefPoint(-70:\Radius){D}
\tkzDrawSegments[dashed](O,A O,B O,C O,D)
\tkzDrawCircle(O,A)
\tkzTangent[at=A](O) \tkzGetPoint{h}
\tkzTangent[at=B](O) \tkzGetPoint{i}
\tkzTangent[at=C](O) \tkzGetPoint{j}
\tkzTangent[at=D](O) \tkzGetPoint{k}
\tkzInterLL(A,h)(B,i) \tkzGetPoint{R}
\tkzInterLL(A,h)(D,k) \tkzGetPoint{Q}
\tkzInterLL(C,j)(B,i) \tkzGetPoint{S}
\tkzInterLL(C,j)(D,k) \tkzGetPoint{P}
\tkzDrawSegments[thick,brown](P,Q Q,R R,S S,P)
\tkzDrawPoints[color=red,size=3mm,fill=red!60](P,Q,R,S)
\tkzLabelPoints[below](O,P,Q,R,S)
\tkzLabelPoints[below](A,B,C,D)
\tkzFindAngle(C,O,D)
\tkzGetAngle{angleCOD};
\FPround\angleCOD\angleCOD{0}
\tkzMarkAngle[size=.5](C,O,D)
\tkzLabelAngle[pos=.7](C,O,D){\tiny $\angleCOD^\circ$}
\tkzFindAngle(D,O,A)
\tkzGetAngle{angleAOD};
\FPround\angleAOD\angleAOD{0}
\tkzMarkAngle[size=.6](D,O,A)
\tkzLabelAngle[pos=.8](D,O,A){\tiny $\angleAOD^\circ$}
\tkzFindAngle(B,O,C)
\tkzGetAngle{angleBOC};
\FPround\angleBOC\angleBOC{0}
\tkzMarkAngle[size=.8](B,O,C)
\tkzLabelAngle[pos=-0.9](C,O,B){\tiny $\angleBOC^\circ$}
\tkzFindAngle(A,O,B)
\tkzGetAngle{angleAOB};
\FPround\angleAOB\angleAOB{0}
\tkzMarkAngle[size=.7](A,O,B)
\tkzLabelAngle[pos=0.9](A,O,B){\tiny $\angleAOB^\circ$}
\end{tikzpicture}
\end{document}

tkz-euclide. I updated my answer – Alain Matthes Aug 18 '18 at 19:12\tkzFindAngle(B,O,C)instead of\tkzFindAngle(C,O,B)– Alain Matthes Aug 18 '18 at 19:14