save
This commit is contained in:
198
core/file.c
198
core/file.c
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@@ -61,3 +79,183 @@ create_and_enter_directory (const char *dirname)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
198
core/file.h
198
core/file.h
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#ifndef FILE_H
|
#ifndef FILE_H
|
||||||
#define FILE_H
|
#define FILE_H
|
||||||
|
|
||||||
@@ -32,3 +50,183 @@ int create_file_with_content(char *path, char *format, ...);
|
|||||||
int create_directory (char *format, ...);
|
int create_directory (char *format, ...);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
198
core/print.c
198
core/print.c
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#include "print.h"
|
#include "print.h"
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@@ -14,3 +32,183 @@ print_error_with_prefix (char *format, ...)
|
|||||||
va_end (args);
|
va_end (args);
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
198
core/print.h
198
core/print.h
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#ifndef PRINT_H
|
#ifndef PRINT_H
|
||||||
#define PRINT_H
|
#define PRINT_H
|
||||||
|
|
||||||
@@ -16,3 +34,183 @@ int print_error_with_prefix(char *format, ...);
|
|||||||
#define printfn print_error_with_prefix
|
#define printfn print_error_with_prefix
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
171
core/standard.c
171
core/standard.c
@@ -1,3 +1,24 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
#ifndef COMMIT
|
||||||
|
#define COMMIT 0
|
||||||
|
#endif
|
||||||
#include "standard.h"
|
#include "standard.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@@ -33,3 +54,153 @@ initialize_main (int *argc, char ***argv)
|
|||||||
(*argv)++;
|
(*argv)++;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
198
core/standard.h
198
core/standard.h
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#ifndef STANDARD_H
|
#ifndef STANDARD_H
|
||||||
#define STANDARD_H
|
#define STANDARD_H
|
||||||
|
|
||||||
@@ -19,3 +37,183 @@ int parse_standard_options(void (*usage_func)(), int argc, char **argv);
|
|||||||
int initialize_main (int *, char ***);
|
int initialize_main (int *, char ***);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
9
tools/Cleanup
Normal file → Executable file
9
tools/Cleanup
Normal file → Executable file
@@ -2,8 +2,15 @@
|
|||||||
|
|
||||||
# Usage: ./Cleanup [FILE]...
|
# Usage: ./Cleanup [FILE]...
|
||||||
|
|
||||||
|
make dist-clean
|
||||||
|
|
||||||
lint_file() {
|
lint_file() {
|
||||||
cppcheck --enable=all --quiet "$1"
|
local output
|
||||||
|
output=$(clang-tidy "$1" 2>&1 | grep -v -E 'Error while trying to load a compilation database|No compilation database found|fixed-compilation-database:|json-compilation-database:|Running without flags.')
|
||||||
|
if [[ -n "$output" ]]; then
|
||||||
|
echo "[LINT] $1:"
|
||||||
|
echo "$output"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
whitespace_cleanup() {
|
whitespace_cleanup() {
|
||||||
|
|||||||
632
yait/contents.h
632
yait/contents.h
@@ -1,255 +1,463 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#ifndef CONTENTS_H
|
#ifndef CONTENTS_H
|
||||||
#define CONTENTS_H
|
#define CONTENTS_H
|
||||||
|
|
||||||
#define line(l) l "\n"
|
#define line(l) l "\n"
|
||||||
|
|
||||||
/* README template */
|
/* README template */
|
||||||
char *readme_template =
|
char *readme_template = line ("%s ( concise description )") line () line (
|
||||||
line ("%s ( concise description )")
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
|
||||||
line ()
|
"tempor") line ("incididunt ut labore et dolore magna aliqua. Ut enim ad "
|
||||||
line ("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor")
|
"minim veniam, quis")
|
||||||
line ("incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis")
|
line ("nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
|
||||||
line ("nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.")
|
"consequat.") line ("Duis aute irure dolor in reprehenderit in "
|
||||||
line ("Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu")
|
"voluptate velit esse cillum dolore eu")
|
||||||
line ("fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in")
|
line ("fugiat nulla pariatur. Excepteur sint occaecat cupidatat non "
|
||||||
|
"proident, sunt in")
|
||||||
line ("culpa qui officia deserunt mollit anim id est laborum.");
|
line ("culpa qui officia deserunt mollit anim id est laborum.");
|
||||||
|
|
||||||
/* configure script template */
|
/* configure script template */
|
||||||
char *configure_template =
|
char *configure_template = line ("#!/bin/sh") line () line ("usage() {") line (
|
||||||
line ("#!/bin/sh")
|
"cat <<EOF") line ("Usage: $0 [OPTION]... [VAR=VALUE]...") line ()
|
||||||
line ()
|
line ("To assign environment variables (e.g., CC, CFLAGS...), specify "
|
||||||
line ("usage() {")
|
"them as") line ("VAR=VALUE.") line ()
|
||||||
line ("cat <<EOF")
|
line (" CC C compiler command [detected]") line (
|
||||||
line ("Usage: $0 [OPTION]... [VAR=VALUE]...")
|
" CFLAGS C "
|
||||||
line ()
|
"compiler flags [-g, "
|
||||||
line ("To assign environment variables (e.g., CC, CFLAGS...), specify them as")
|
"...]") line () line ("EOF") line ("exit 0") line ("}") line ()
|
||||||
line ("VAR=VALUE.")
|
line ("echo () { printf \"%%s\\n\" \"$*\" ; }") line (
|
||||||
line ()
|
"cmdexists () { "
|
||||||
line (" CC C compiler command [detected]")
|
"type \"$1\" "
|
||||||
line (" CFLAGS C compiler flags [-g, ...]")
|
">/dev/null 2>&1 "
|
||||||
line ()
|
"; }") line ("trycc () { test -z \"$CC\" && cmdexists \"$1\" "
|
||||||
line ("EOF")
|
"&& CC=$1 ; "
|
||||||
line ("exit 0")
|
"}") line () line ("prefix=/usr/bin/")
|
||||||
line ("}")
|
line ("CFLAGS=\"-Wall -Wextra -O2\"") line ("LDFLAGS=") line (
|
||||||
line ()
|
"CC=") line () line ("for arg ; do") line ("case \"$arg\" "
|
||||||
line ("echo () { printf \"%%s\\n\" \"$*\" ; }")
|
"in")
|
||||||
line ("cmdexists () { type \"$1\" >/dev/null 2>&1 ; }")
|
line ("--help|h) usage ;;") line (
|
||||||
line ("trycc () { test -z \"$CC\" && cmdexists \"$1\" && CC=$1 ; }")
|
"CFLAGS=*) CFLAGS=${arg#*=} ;;") line ("LDFLAGS=*) "
|
||||||
line ()
|
"LDFLAGS=${arg#"
|
||||||
line ("prefix=/usr/bin/")
|
"*=} ;;")
|
||||||
line ("CFLAGS=\"-Wall -Wextra -O2\"")
|
line ("esac") line ("done") line () line (
|
||||||
line ("LDFLAGS=")
|
"printf \"checking for C "
|
||||||
line ("CC=")
|
"compiler... \"") line ("trycc gcc")
|
||||||
line ()
|
line ("trycc cc") line ("trycc clang") line (
|
||||||
line ("for arg ; do")
|
"printf \"%%s\\n\" \"$CC\"") line ()
|
||||||
line ("case \"$arg\" in")
|
line ("printf \"checking weather C compiler "
|
||||||
line ("--help|h) usage ;;")
|
"works... \"") line ("status=\"fail\"")
|
||||||
line ("CFLAGS=*) CFLAGS=${arg#*=} ;;")
|
|
||||||
line ("LDFLAGS=*) LDFLAGS=${arg#*=} ;;")
|
|
||||||
line ("esac")
|
|
||||||
line ("done")
|
|
||||||
line ()
|
|
||||||
line ("printf \"checking for C compiler... \"")
|
|
||||||
line ("trycc gcc")
|
|
||||||
line ("trycc cc")
|
|
||||||
line ("trycc clang")
|
|
||||||
line ("printf \"%%s\\n\" \"$CC\"")
|
|
||||||
line ()
|
|
||||||
line ("printf \"checking weather C compiler works... \"")
|
|
||||||
line ("status=\"fail\"")
|
|
||||||
line ("tmpc=\"$(mktemp -d)/test.c\"")
|
line ("tmpc=\"$(mktemp -d)/test.c\"")
|
||||||
line ("echo \"typedef int x;\" > \"$tmpc\"")
|
line (
|
||||||
line ("if output=$($CC $CFLAGS -c -o /dev/null \"$tmpc\" 2>&1) ; then")
|
"echo \"typedef int x;\" > "
|
||||||
line ("printf \"yes\\n\"")
|
"\"$tmpc\"") line ("if "
|
||||||
line ("else")
|
"output=$($CC "
|
||||||
line ("printf \"no; %%s\\n\" \"$output\"")
|
"$CFLAGS -c -o "
|
||||||
line ("exit 1")
|
"/dev/null "
|
||||||
line ("fi")
|
"\"$tmpc\" "
|
||||||
line ()
|
"2>&1) "
|
||||||
line ("printf \"creating config.mak... \"")
|
"; then")
|
||||||
line ("printf \"PREFIX=%%s\\n\" \"$prefix\" > config.mak")
|
line ("printf \"yes\\n\"") line (
|
||||||
line ("printf \"CFLAGS=%%s\\n\" \"$CFLAGS\" >> config.mak")
|
"else") line ("printf \"no; "
|
||||||
line ("printf \"LDFLAGS=%%s\\n\" \"$LDFLAGS\" >> config.mak")
|
"%%s\\n\" "
|
||||||
line ("printf \"CC=%%s\\n\" \"$CC\" >> config.mak")
|
"\"$output\"")
|
||||||
line ("printf \"done\\n\"");
|
line ("exit 1") line (
|
||||||
|
"fi") line () line ("print"
|
||||||
|
"f "
|
||||||
|
"\"cre"
|
||||||
|
"ating"
|
||||||
|
" "
|
||||||
|
"confi"
|
||||||
|
"g."
|
||||||
|
"mak.."
|
||||||
|
". \"")
|
||||||
|
line ("printf "
|
||||||
|
"\"PREFIX=%%s\\n\" "
|
||||||
|
"\"$prefix\" > "
|
||||||
|
"config.mak")
|
||||||
|
line ("printf "
|
||||||
|
"\"CFLAGS=%%"
|
||||||
|
"s\\n\" "
|
||||||
|
"\"$CFLAGS\" >> "
|
||||||
|
"config.mak")
|
||||||
|
line (
|
||||||
|
"printf "
|
||||||
|
"\"LDFLAGS=%%"
|
||||||
|
"s\\n\" "
|
||||||
|
"\"$LDFLAGS\" "
|
||||||
|
">> "
|
||||||
|
"config.mak")
|
||||||
|
line (
|
||||||
|
"printf "
|
||||||
|
"\"CC=%%"
|
||||||
|
"s\\n\" "
|
||||||
|
"\"$CC\" "
|
||||||
|
">> "
|
||||||
|
"config."
|
||||||
|
"mak")
|
||||||
|
line (
|
||||||
|
"print"
|
||||||
|
"f "
|
||||||
|
"\"don"
|
||||||
|
"e\\n"
|
||||||
|
"\"");
|
||||||
|
|
||||||
/* Makefile template */
|
/* Makefile template */
|
||||||
char *makefile_template =
|
char *makefile_template = line ("prefix = /usr/bin") line () line (
|
||||||
line ("prefix = /usr/bin")
|
"%s_SRCS := $(shell find . -name '%s/*.c')") line ("%s_OBJS := $(patsubst "
|
||||||
line ()
|
"./%.c,c-out/obj/"
|
||||||
line ("%s_SRCS := $(shell find . -name '%s/*.c')")
|
"%.o,$(%s_SRCS))")
|
||||||
line ("%s_OBJS := $(patsubst ./%.c,c-out/obj/%.o,$(%s_SRCS))")
|
line () line ("%s := c-out/bin/%s") line () line ("-include config.mak")
|
||||||
line ()
|
line () line ("ifeq ($(wildcard config.mak),)") line ("all:") line (
|
||||||
line ("%s := c-out/bin/%s")
|
"\t@echo \"File config.mak not found, run configure\"")
|
||||||
line ()
|
line ("\t@exit 1") line ("else") line () line ("all: build $(%s)")
|
||||||
line ("-include config.mak")
|
line () line ("build:") line ("\tmkdir -p c-out/bin") line (
|
||||||
line ()
|
"\tmkdir -p c-out/obj") line () line ("c-out/obj/%.o: %.c")
|
||||||
line ("ifeq ($(wildcard config.mak),)")
|
line ("\t$(CC) $(CFLAGS) -c $< -o $@") line ()
|
||||||
line ("all:")
|
line ("$(%s): $(%s_OBJS)") line (
|
||||||
line ("\t@echo \"File config.mak not found, run configure\"")
|
"\t$(CC) $(CFLAGS) -DCOMMIT=$(shell git rev-list "
|
||||||
line ("\t@exit 1")
|
"--count --all 2>/dev/null || echo 0) $^ -o $@")
|
||||||
line ("else")
|
line () line ("endif") line () line ("install:")
|
||||||
line ()
|
line ("\t@echo \"NOT IMPL\"") line (
|
||||||
line ("all: build $(%s)")
|
"\texit 1") line () line ("uninstall:")
|
||||||
line ()
|
line ("\t@echo \"NOT IMPL\"") line (
|
||||||
line ("build:")
|
"\texit 1") line () line ("clean:")
|
||||||
line ("\tmkdir -p c-out/bin")
|
line ("\trm -rf c-out") line ()
|
||||||
line ("\tmkdir -p c-out/obj")
|
line ("dist-clean: clean") line (
|
||||||
line ()
|
"\trm -f config.mak") line ()
|
||||||
line ("c-out/obj/%.o: %.c")
|
line (
|
||||||
line ("\t$(CC) $(CFLAGS) -c $< -o $@")
|
".PHONY: all clean "
|
||||||
line ()
|
"dist-clean install "
|
||||||
line ("$(%s): $(%s_OBJS)")
|
"uninstall build format");
|
||||||
line ("\t$(CC) $(CFLAGS) -DCOMMIT=$(shell git rev-list --count --all 2>/dev/null || echo 0) $^ -o $@")
|
|
||||||
line ()
|
|
||||||
line ("endif")
|
|
||||||
line ()
|
|
||||||
line ("install:")
|
|
||||||
line ("\t@echo \"NOT IMPL\"")
|
|
||||||
line ("\texit 1")
|
|
||||||
line ()
|
|
||||||
line ("uninstall:")
|
|
||||||
line ("\t@echo \"NOT IMPL\"")
|
|
||||||
line ("\texit 1")
|
|
||||||
line ()
|
|
||||||
line ("clean:")
|
|
||||||
line ("\trm -rf c-out")
|
|
||||||
line ()
|
|
||||||
line ("dist-clean: clean")
|
|
||||||
line ("\trm -f config.mak")
|
|
||||||
line ()
|
|
||||||
line (".PHONY: all clean dist-clean install uninstall build format");
|
|
||||||
|
|
||||||
/* .clang-format template */
|
/* .clang-format template */
|
||||||
char *clang_format_template =
|
char *clang_format_template = line ("BasedOnStyle: GNU");
|
||||||
line ("BasedOnStyle: GNU");
|
|
||||||
|
|
||||||
/* BSD 3-Clause License template */
|
/* BSD 3-Clause License template */
|
||||||
char *bsd3_license_template =
|
char *bsd3_license_template = line ("BSD 3-Clause License") line () line (
|
||||||
line ("BSD 3-Clause License")
|
"Copyright (c) %d, %s") line () line ("Redistribution and use in source "
|
||||||
line ()
|
"and binary forms, with or without")
|
||||||
line ("Copyright (c) %d, %s")
|
line ("modification, are permitted provided that the following conditions "
|
||||||
line ()
|
"are met:") line () line ("1. Redistributions of source code must "
|
||||||
line ("Redistribution and use in source and binary forms, with or without")
|
"retain the above copyright "
|
||||||
line ("modification, are permitted provided that the following conditions are met:")
|
"notice, this")
|
||||||
line ()
|
line (
|
||||||
line ("1. Redistributions of source code must retain the above copyright notice, this")
|
" list of conditions and the following "
|
||||||
line (" list of conditions and the following disclaimer.")
|
"disclaimer.") line () line ("2. Redistributions in binary form "
|
||||||
line ()
|
"must reproduce the above "
|
||||||
line ("2. Redistributions in binary form must reproduce the above copyright notice,")
|
"copyright notice,") line (" this")
|
||||||
line (" this")
|
line ("list of conditions and the following disclaimer in the "
|
||||||
line ("list of conditions and the following disclaimer in the documentation")
|
"documentation") line (" and/or other materials provided "
|
||||||
line (" and/or other materials provided with the distribution.")
|
"with "
|
||||||
line ()
|
"the distribution.") line ()
|
||||||
line ("3. Neither the name of the copyright holder nor the names of its")
|
line ("3. Neither the name of the copyright holder nor the "
|
||||||
line (" contributors may be used to endorse or promote products derived from")
|
"names "
|
||||||
line (" this software without specific prior written permission.")
|
"of its") line (" contributors may be used to endorse "
|
||||||
line ()
|
"or "
|
||||||
line ("THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"")
|
"promote products derived from")
|
||||||
line ("AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE")
|
line (
|
||||||
line ("IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE")
|
" this software without specific prior written "
|
||||||
line ("DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE")
|
"permission.") line () line ("THIS SOFTWARE IS "
|
||||||
line ("FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL")
|
"PROVIDED BY THE "
|
||||||
line ("DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR")
|
"COPYRIGHT "
|
||||||
line ("SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER")
|
"HOLDERS AND "
|
||||||
line ("CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,")
|
"CONTRIBUTORS \"AS IS\"")
|
||||||
line ("OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE")
|
line ("AND ANY EXPRESS OR IMPLIED WARRANTIES, "
|
||||||
line ("OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.");
|
"INCLUDING, "
|
||||||
|
"BUT NOT LIMITED TO, THE") line ("IMPLIED "
|
||||||
|
"WARRANTIES OF "
|
||||||
|
"MERCHANTABILIT"
|
||||||
|
"Y AND FITNESS "
|
||||||
|
"FOR A "
|
||||||
|
"PARTICULAR "
|
||||||
|
"PURPOSE ARE")
|
||||||
|
line (
|
||||||
|
"DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT "
|
||||||
|
"HOLDER OR CONTRIBUTORS BE LIABLE")
|
||||||
|
line ("FOR ANY DIRECT, INDIRECT, INCIDENTAL, "
|
||||||
|
"SPECIAL, "
|
||||||
|
"EXEMPLARY, OR CONSEQUENTIAL")
|
||||||
|
line ("DAMAGES (INCLUDING, BUT NOT "
|
||||||
|
"LIMITED TO, "
|
||||||
|
"PROCUREMENT OF SUBSTITUTE GOODS OR")
|
||||||
|
line ("SERVICES; LOSS OF USE, DATA, "
|
||||||
|
"OR PROFITS; OR "
|
||||||
|
"BUSINESS INTERRUPTION) HOWEVER")
|
||||||
|
line ("CAUSED AND ON ANY THEORY "
|
||||||
|
"OF LIABILITY, "
|
||||||
|
"WHETHER IN CONTRACT, "
|
||||||
|
"STRICT LIABILITY,")
|
||||||
|
line ("OR TORT (INCLUDING "
|
||||||
|
"NEGLIGENCE OR "
|
||||||
|
"OTHERWISE) ARISING IN "
|
||||||
|
"ANY WAY OUT "
|
||||||
|
"OF THE USE")
|
||||||
|
line ("OF THIS SOFTWARE, "
|
||||||
|
"EVEN IF ADVISED OF "
|
||||||
|
"THE POSSIBILITY OF "
|
||||||
|
"SUCH DAMAGE.");
|
||||||
|
|
||||||
/* config.h template */
|
/* config.h template */
|
||||||
char *config_h_template =
|
char *config_h_template = line ("#ifndef CONFIG_H") line ("#define CONFIG_H")
|
||||||
line ("#ifndef CONFIG_H")
|
line () line ("/* Program information */") line ("#define PROGRAM \"%s\"")
|
||||||
line ("#define CONFIG_H")
|
line ("#define LICENSE_line \"%s\"") line ("#define AUTHORS \"%s\"")
|
||||||
line ()
|
line ("#define VERSION \"pre-alpha\"") line ("#define YEAR 2025")
|
||||||
line ("/* Program information */")
|
line () line ("#define HELP_REQUESTED 2")
|
||||||
line ("#define PROGRAM \"%s\"")
|
|
||||||
line ("#define LICENSE_line \"%s\"")
|
|
||||||
line ("#define AUTHORS \"%s\"")
|
|
||||||
line ("#define VERSION \"pre-alpha\"")
|
|
||||||
line ("#define YEAR 2025")
|
|
||||||
line ()
|
|
||||||
line ("#define HELP_REQUESTED 2")
|
|
||||||
line ("#define ERROR_MEMORY_ALLOCATION 3")
|
line ("#define ERROR_MEMORY_ALLOCATION 3")
|
||||||
line ("#define ERROR_DIRECTORY_CREATION 4")
|
line ("#define ERROR_DIRECTORY_CREATION 4") line ()
|
||||||
line ()
|
|
||||||
line ("#endif");
|
line ("#endif");
|
||||||
|
|
||||||
/* main.c (non-GNU) template */
|
/* main.c (non-GNU) template */
|
||||||
char *main_c_template =
|
char *main_c_template = line ("#include <stdio.h>") line ()
|
||||||
line ("#include <stdio.h>")
|
line ("int main(void) {") line (" printf(\"%s: Hello %s!\\n\");")
|
||||||
line ()
|
line (" return 0;") line ("}");
|
||||||
line ("int main(void) {")
|
|
||||||
line (" printf(\"%s: Hello %s!\\n\");")
|
|
||||||
line (" return 0;")
|
|
||||||
line ("}");
|
|
||||||
|
|
||||||
/* main.c (GNU) template */
|
/* main.c (GNU) template */
|
||||||
char *main_c_gnu_template =
|
char *main_c_gnu_template = line ("#include <stdio.h>")
|
||||||
line ("#include <stdio.h>")
|
line ("#include \"standard.h\"") line () line ("void usage(int status) {")
|
||||||
line ("#include \"standard.h\"")
|
|
||||||
line ()
|
|
||||||
line ("void usage(int status) {")
|
|
||||||
line (" fprintf(stderr, \"Usage: %s [OPTION...]\\n\");")
|
line (" fprintf(stderr, \"Usage: %s [OPTION...]\\n\");")
|
||||||
line (" fprintf(stderr, \" --help\\tdisplay the help text and exit\\n\");")
|
line (" fprintf(stderr, \" --help\\tdisplay the help text and "
|
||||||
line (" fprintf(stderr, \" --version\\toutput version information and exit\\n\");")
|
"exit\\n\");")
|
||||||
line ("}")
|
line (" fprintf(stderr, \" --version\\toutput version "
|
||||||
line ()
|
"information and exit\\n\");") line ("}") line ()
|
||||||
line ("int main(int argc, char **argv) {")
|
line ("int main(int argc, char **argv) {")
|
||||||
line (" parse_standard_options(usage, argc, argv);")
|
line (" parse_standard_options(usage, argc, argv);")
|
||||||
line (" printf(\"%s: Hello %s!\\n\");")
|
line (" printf(\"%s: Hello %s!\\n\");")
|
||||||
line (" return 0;")
|
line (" return 0;") line ("}");
|
||||||
line ("}");
|
|
||||||
|
|
||||||
/* standard.c template */
|
/* standard.c template */
|
||||||
char *standard_c_template =
|
char *standard_c_template = line ("#include \"standard.h\"") line (
|
||||||
line ("#include \"standard.h\"")
|
"#include \"../config.h\"") line ("#include <stdio.h>")
|
||||||
line ("#include \"../config.h\"")
|
line ("#include <stdlib.h>") line ("#include <string.h>") line () line (
|
||||||
line ("#include <stdio.h>")
|
"int") line ("parse_standard_options (void (*usage) (int), int argc, "
|
||||||
line ("#include <stdlib.h>")
|
"char **argv)") line ("{")
|
||||||
line ("#include <string.h>")
|
line (" for (int i = 1; i < argc; ++i)") line (" {") line (
|
||||||
line ()
|
" if (strcmp (argv[i], \"--help\") == 0)") line (" {")
|
||||||
line ("int")
|
line (" usage (0);") line (
|
||||||
line ("parse_standard_options (void (*usage) (int), int argc, char **argv)")
|
" exit (EXIT_SUCCESS);") line (" }")
|
||||||
line ("{")
|
|
||||||
line (" for (int i = 1; i < argc; ++i)")
|
|
||||||
line (" {")
|
|
||||||
line (" if (strcmp (argv[i], \"--help\") == 0)")
|
|
||||||
line (" {")
|
|
||||||
line (" usage (0);")
|
|
||||||
line (" exit (EXIT_SUCCESS);")
|
|
||||||
line (" }")
|
|
||||||
line (" else if (strcmp (argv[i], \"--version\") == 0)")
|
line (" else if (strcmp (argv[i], \"--version\") == 0)")
|
||||||
line (" {")
|
line (" {") line (
|
||||||
line (" printf (\"%%s %%s %%d\\nCopyright (C) %%d %%s.\\n%%s\\nThis is free software: you are free to change and redistribute it.\\nThere is NO WARRNTY, to the extent permitted by law.\\n\", PROGRAM, VERSION, COMMIT, YEAR, AUTHORS, LICENSE_line );")
|
" printf (\"%%s %%s %%d\\nCopyright (C) %%d "
|
||||||
|
"%%s.\\n%%s\\nThis is free software: you are free to "
|
||||||
|
"change and redistribute it.\\nThere is NO WARRNTY, "
|
||||||
|
"to the extent permitted by law.\\n\", PROGRAM, "
|
||||||
|
"VERSION, COMMIT, YEAR, AUTHORS, LICENSE_line );")
|
||||||
line (" exit (EXIT_SUCCESS);")
|
line (" exit (EXIT_SUCCESS);")
|
||||||
line (" }")
|
line (" }") line (" }")
|
||||||
line (" }")
|
line (" return HELP_REQUESTED;") line ("}");
|
||||||
line (" return HELP_REQUESTED;")
|
|
||||||
line ("}");
|
|
||||||
|
|
||||||
/* standard.h template */
|
/* standard.h template */
|
||||||
char *standard_h_template =
|
char *standard_h_template = line ("#ifndef STANDARD_H") line (
|
||||||
line ("#ifndef STANDARD_H")
|
"#define STANDARD_H") line () line ("/**")
|
||||||
line ("#define STANDARD_H")
|
line (" * Parse standard command line options (--help, --version)") line (
|
||||||
line ()
|
" * @param usage_func Function pointer to usage display function")
|
||||||
line ("/**")
|
|
||||||
line (" * Parse standard command line options (--help, --version)")
|
|
||||||
line (" * @param usage_func Function pointer to usage display function")
|
|
||||||
line (" * @param argc Argument count")
|
line (" * @param argc Argument count")
|
||||||
line (" * @param argv Argument vector")
|
line (" * @param argv Argument vector")
|
||||||
line (" * @return 0 on success, 1 if help/version requested, errno on error")
|
line (" * @return 0 on success, 1 if help/version requested, "
|
||||||
line (" */")
|
"errno on error") line (" */")
|
||||||
line ("int parse_standard_options(void (*usage_func)(), int argc, char **argv);")
|
line ("int parse_standard_options(void (*usage_func)(), "
|
||||||
line ()
|
"int argc, char **argv);") line () line ("#endif");
|
||||||
line ("#endif");
|
|
||||||
|
|
||||||
/* WHATNEXT.md template */
|
/* WHATNEXT.md template */
|
||||||
char *what_next_template =
|
char *what_next_template = line ("# What next?") line ("") line ("## Steps")
|
||||||
line ("# What next?")
|
|
||||||
line ("")
|
|
||||||
line ("## Steps")
|
|
||||||
line (" - Write a description in the README")
|
line (" - Write a description in the README")
|
||||||
line (" - Write the usage function ( write to stderr )")
|
line (" - Write the usage function ( write to stderr )")
|
||||||
line (" - Start writing your program");
|
line (" - Start writing your program");
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
210
yait/format.h
210
yait/format.h
@@ -1,10 +1,29 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#ifndef FORMAT_H
|
#ifndef FORMAT_H
|
||||||
#define FORMAT_H
|
#define FORMAT_H
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
/* License type enumeration */
|
/* License type enumeration */
|
||||||
typedef enum {
|
typedef enum
|
||||||
|
{
|
||||||
BSD3, /* BSD 3-Clause License */
|
BSD3, /* BSD 3-Clause License */
|
||||||
GPLv3, /* GNU General Public License v3 */
|
GPLv3, /* GNU General Public License v3 */
|
||||||
MIT, /* MIT License */
|
MIT, /* MIT License */
|
||||||
@@ -12,7 +31,8 @@ typedef enum {
|
|||||||
} licence_t;
|
} licence_t;
|
||||||
|
|
||||||
/* Library type enumeration - using bit flags for multiple selection */
|
/* Library type enumeration - using bit flags for multiple selection */
|
||||||
typedef enum {
|
typedef enum
|
||||||
|
{
|
||||||
LIB_NONE = 0, /* No libraries selected */
|
LIB_NONE = 0, /* No libraries selected */
|
||||||
LIB_RAYLIB = 1 << 0, /* Raylib game library */
|
LIB_RAYLIB = 1 << 0, /* Raylib game library */
|
||||||
LIB_WINAPI = 1 << 1, /* Windows API */
|
LIB_WINAPI = 1 << 1, /* Windows API */
|
||||||
@@ -26,14 +46,16 @@ typedef enum {
|
|||||||
} lib_flags_t;
|
} lib_flags_t;
|
||||||
|
|
||||||
/* Flag option type struct */
|
/* Flag option type struct */
|
||||||
typedef struct {
|
typedef struct
|
||||||
|
{
|
||||||
bool GNU;
|
bool GNU;
|
||||||
bool git;
|
bool git;
|
||||||
bool clang_format;
|
bool clang_format;
|
||||||
} flags_t;
|
} flags_t;
|
||||||
|
|
||||||
/* Project configuration structure */
|
/* Project configuration structure */
|
||||||
typedef struct {
|
typedef struct
|
||||||
|
{
|
||||||
licence_t licence; /* License type for the project */
|
licence_t licence; /* License type for the project */
|
||||||
char *project; /* Project name */
|
char *project; /* Project name */
|
||||||
char *name; /* Author/creator name */
|
char *name; /* Author/creator name */
|
||||||
@@ -54,3 +76,183 @@ typedef struct {
|
|||||||
#define CLEAR_LIBRARIES(libs) ((libs) = LIB_NONE)
|
#define CLEAR_LIBRARIES(libs) ((libs) = LIB_NONE)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
201
yait/main.c
201
yait/main.c
@@ -1,3 +1,21 @@
|
|||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
|
// Copyright (C) 2025 vx_clutch ( owestness@gmail.com )
|
||||||
|
// See end of file for extended copyright information.
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include "../core/file.h"
|
#include "../core/file.h"
|
||||||
#include "../core/print.h"
|
#include "../core/print.h"
|
||||||
@@ -51,7 +69,8 @@ usage (int status)
|
|||||||
print_option ("--GNU",
|
print_option ("--GNU",
|
||||||
"Adds stand GNU argument parsing to your project");
|
"Adds stand GNU argument parsing to your project");
|
||||||
printf (" --help\tdisplay the help text and exit\n");
|
printf (" --help\tdisplay the help text and exit\n");
|
||||||
printf (" --version\toutput version information and exit\n");
|
printf (
|
||||||
|
" --version\toutput version information and exit\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -176,3 +195,183 @@ create_project (format_t fmt)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation
|
||||||
|
* or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* yait is yet another init tool.
|
||||||
|
* Copyright (C) 2025 vx-clutch
|
||||||
|
*
|
||||||
|
* This file is part of yait.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions, and the following disclaimer in the documentation or
|
||||||
|
* other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of vx-clutch nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user