• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "build/rust/tests/test_rust_calling_cpp/cpp_library.h"
6 
7 #include <cstdint>
8 
mul_by_2_in_cpp_library(int32_t a)9 int32_t mul_by_2_in_cpp_library(int32_t a) {
10   return a * 2;
11 }
12