What you are looking for is the angle ψ below, to test if it is within certain limits (like +/- 90°)

This can be done by finding the angle ψ between the vectors B-A and D-B.
The angle between them is found using the following dot and cross product rules

and the pseudocode using the atan2(dy,dx) function that must programming environments have
v_1.x = B.x-A.x
v_1.y = B.y-A.y
v_2.x = D.x-B.x
v_2.y = D.y-B.y
ψ = atan2( (v_1.x*v_2.y - v_1.y*v_2.x), (v_1.x*v_2.x + v_1.y*v_2.y) )
Note that the result is within -π and +π covering all 4 quadrants
Now just check if abs(ψ) <= π/2.
Take a note of the definition of atan2 since some environments define it as atan2(dx,dy) and some as atan2(dy,dx), where the angle is measured such that dx=r*cos(ψ) and dy=r*sin(ψ).
And don't forget to check also the distance BD if it's within the radius of the circle.