/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT license.
*/
/**
* @brief Resets the stopwatch.
*/
extern void ;
/**
* @brief Starts the stopwatch.
*/
extern void ;
/**
* @brief Stops the stopwatch.
*/
extern void ;
/**
* @brief Returns the elapsed times in nanoseconds.
*
* @return The elapsed times in nanoseconds.
*/
extern long long ;
/* !STOPWATCH_H_ */