void
standard_style(int n)
{
if (n > 99) {
print("large");
} else if (n > 9) {
print("double-digit");
} else if (n > 0)
print("positive");
else {
print("negative");
}
}
void
standard_style(int n)
{
if (n > 99)
{
print("large");
} else if (n > 9)
{
print("double-digit");
} else if (n > 0)
print("positive");
else
{
print("negative");
}
}
void
condensed_style(int n)
{
if (n > 99) { print("large"); }
else if (n > 9) { print("double-digit"); }
else if (n > 0) print("positive");
else { print("negative"); }
}
void
condensed_style(int n)
{
if (n > 99)
{
print("large");
}
else if (n > 9)
{
print("double-digit");
}
else if (n > 0)
print("positive");
else
{
print("negative");
}
}
void
condensed_style(int n)
{
if (n > 99) {
print("large");
}
else if (n > 9) {
print("double-digit");
}
else if (n > 0)
print("positive");
else {
print("negative");
}
}
void
eol_comment(void)
{
if (expr)
stmt();
if (expr)
{
stmt();
}
}
void
eol_comment(void)
{
if (expr)
stmt();
if (expr)
{
stmt();
}
}
void
function(void)
{
if (expr)
stmt();
}
void
function(void)
{
if (expr)
stmt();
}
void
function(void)
{
if (cond)
{
stmt();
}
else if (cond)
{
stmt();
}
}
void
comments(void)
{
if(cond){}
if (cond)
{}
if (cond)
{}
if (cond)
{}
if (cond)
{}
if (cond)
{}
}
void
comments(void)
{
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
}
void
comments(void)
{
if (cond) {
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
if (cond)
{
}
}