16 lines
367 B
C
16 lines
367 B
C
|
/*
|
||
|
* Shared Dragonfly functionality
|
||
|
* Copyright (c) 2012-2016, Jouni Malinen <j@w1.fi>
|
||
|
* Copyright (c) 2019, The Linux Foundation
|
||
|
*
|
||
|
* This software may be distributed under the terms of the BSD license.
|
||
|
* See README for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef DRAGONFLY_H
|
||
|
#define DRAGONFLY_H
|
||
|
|
||
|
int dragonfly_suitable_group(int group, int ecc_only);
|
||
|
|
||
|
#endif /* DRAGONFLY_H */
|