mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add autocomplete script generation for dasdfmt tool. Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Ellen McIntyre <ellen@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
21 lines
388 B
C
21 lines
388 B
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Autocompletion generation - for dasdfmt tool
|
|
*
|
|
* Copyright IBM Corp. 2025
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#include "lib/util_autocomp.h"
|
|
|
|
#include "dasdfmt_cli.h"
|
|
|
|
int main(void)
|
|
{
|
|
generate_autocomp(opt_vec, "dasdfmt");
|
|
|
|
return 0;
|
|
}
|