/*----------------------------------------------------------------------------*/ /* Copyright (c) FIRST 2016. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ /*----------------------------------------------------------------------------*/ #ifndef CS_USBUTIL_H_ #define CS_USBUTIL_H_ #include "llvm/SmallVector.h" #include "llvm/StringRef.h" namespace cs { llvm::StringRef GetUsbNameFromId(int vendor, int product, llvm::SmallVectorImpl& buf); } // namespace cs #endif // CS_USBUTIL_H_