blob: 7dc9d2d8b46f858d7793d6dd06f1e2974d8baf9f [file] [log] [blame]
/* Copyright (c) 2012 Google Inc. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
int CalculatePerformExpression(char* expr,
int significantDigits,
int flags,
char* answer);
int main() {
char buffer[1024];
return CalculatePerformExpression("42", 1, 0, buffer);
}