function [objVal,x,X,Y,INFO]=sdpamC(mDIM,nBLOCK,bLOCKsTRUCT,c,F,...
x0,X0,Y0,OPTION)
%
% Compute the solution of standard SDP.
% Since some of input arguments are optional, sdpam can be
% overloaded as below.
%
% [objVal,x,X,Y,INFO] = sdpamC(mDIM,nBLOCK,bLOCKsTRUCT,c,F,
% x0,X0,Y0,OPTION);
%
%
% - mDIM : integer ; number of primal variables
% - nBLOCK : integer ; number of blocks of F
% - bLOCKsTRUCT: vector ; represetns the block structure of F
% - c : vector ; coefficient vector
% - F : cell array; coefficient matrices
% - x0,X0,Y0 : cell array; initial point
% (NOTE: In SDPA-C, initial point is ignored.)
% - OPTION : structure ; options
%
%