Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 792 Bytes

File metadata and controls

31 lines (23 loc) · 792 Bytes

Advanced-C-files-and-headers-generator

A little tool to create .c and .h files in specified directory These 2 files contains basic files declaration (no loop include, include .h in .c)

fileName.c

#include "fileName.h"

fileName.h

#ifndef fileName__H
#define fileName__H
#include "definitions.h"

#endif

alt text

Features:

  • List box of each names of files to create
  • Buttons add and remove to interact with list
  • Folder explorer to select in wich folder create files
  • CheckBox to include "definitions.h" in header files
  • Button to create files
  • Error exceptions and corrections (special characters, empty file name, not enought rights to write, already existing file, deleted folder)

Enjoy it !