cdecl (which stands for c declaration) is another calling convention that was used by many C compilers in x86. It's very similar to stdcall, with the only difference being that the caller cleans the stack after the callee function (the called function) returns like this:
Caller:
push Arg02
push Arg01
call Callee
add esp, 8 ;cleans the stack