19 lines
321 B
C
19 lines
321 B
C
// Copyright (c) Acconeer AB, 2020-2021
|
|
// All rights reserved
|
|
|
|
|
|
#ifndef REF_APP_PARKING_H_
|
|
#define REF_APP_PARKING_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
/**
|
|
* @brief Parking reference application
|
|
*
|
|
* @return Returns EXIT_SUCCESS if successful, otherwise EXIT_FAILURE
|
|
*/
|
|
int acc_ref_app_parking(int argc, char *argv[]);
|
|
|
|
|
|
#endif
|