1/* Copyright (c) 2012 Google Inc. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6int CalculatePerformExpression(char* expr,
7                               int significantDigits,
8                               int flags,
9                               char* answer);
10
11int main() {
12  char buffer[1024];
13  return CalculatePerformExpression("42", 1, 0, buffer);
14}
15
16