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

	return 0;
}
Exemple #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;
}
Exemple #4
0
void DotChar::print() const {
    if (_index == _df.length)
        this->clear(false);
    else
        _vertical ? printV() : printH();
}