I've got three vectors v1[0,1], v2[-1,1], v3[1,1].
I calculated the angles beetween v1-v2 and v1-v3 using the forumla dot(vec1, vec2) / ||vec1|| * ||vec2|| and the both angles are the same (45 degrees).
How to determine that the vector v2 lies on the countercloclwise side (CCW) form v1 (CW angle is 335 degress), and v3 lies on the clockwise (CW) side form v1 (CW angle is 45 degrees).

For 2 vectors $a = (a_x, a_y), b = (b_x, b_y)$ compute $$c_z = a_x b_y - a_y b_x$$ If $c_z > 0$ then $b$ is on the CCW side of $a$. If $c_z < 0$ then $b$ is on the CW side of $a$. If $c_z = 0$ then $a$ and $b$ are parallel.
The reasoning behind this formula is that you can consider the 2D vectors as 3D vectors in the x/y plane: $a = (a_x, a_y, 0), b = (b_x, b_y, 0)$. The $c_z$ component of the vector product
$$ c = a \times b = (0, 0, a_x b_y - a_y b_x) $$
characterizes the orientation of the vectors $a,b$ with respect to each other.
Applied to your case: $$v_1 \times v_2 = (0, 0, 1), v_2 \text{ is left (CCW) to } v_1$$ $$v_1 \times v_3 = (0, 0, -1), v_3 \text{ is right (CW) to } v_1$$