📄 xpcol.h
字号:
/* xpcol.h freeware xhunga@tiscali.fr */
/* --------------------------------- FUNCTION ------------------------------ */
/* Do : */
/* */
/* -------------------------------------------------------------------------- */
void p_cF(
PmF m,
int col)
{
int i;
for (i = 0 ; i < m->rows ; i++)
{
printf("\n");
printf("%6.0f/%-6.0f",*(m->pb+i *m->cols+col*C2 ),
*(m->pb+i *m->cols+col*C2+1));
}
printf("\n");
}
/* --------------------------------- FUNCTION ------------------------------ */
/* Do : */
/* */
/* -------------------------------------------------------------------------- */
void p_cI(
PmF m,
int col)
{
int i;
for (i = 0 ; i < m->rows ; i++)
{
printf("\n");
printf("%6.0f",*(m->pb+i *m->cols+col*C2));
}
printf("\n");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -