Exemplo n.º 1
0
void DotFont::print() const
{
	if (_index == _pattern_length)
		this->clear(false);
	else
		_vertical ? printV() : printH();
}
Exemplo n.º 2
0
static int __init test_module_init(void)
{
	printJ();
	printH();
	printK();

	return 0;
}
Exemplo n.º 3
0
int main(){
  int n,m;
  while(~scanf("%d%d",&n,&m)){
    printW(n);
    printf("\n");
    printH(m,n);
    printW(n);
    printf("\n\n");
    

  }
  return 0;
}
Exemplo n.º 4
0
void DotChar::print() const {
    if (_index == _df.length)
        this->clear(false);
    else
        _vertical ? printV() : printH();
}