getLineLimit method

bool getLineLimit(
  1. int lineLength
)

Implementation

bool getLineLimit(int lineLength) {
  if (lineMaxLength == 0) {
    return true;
  }
  if (lineLength >= lineMaxLength) {
    return false;
  } else {
    return true;
  }
}