Skip to content

A simple utility to generate .h and .c files based on the given file name

Notifications You must be signed in to change notification settings

hermanodecastro/scaffold-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Scaffold-c

Overview

A simple utility to generate .h and .c files based on the given file name

Example

./main foo bar

foo.h

#ifndef FOO_H
#define FOO_H

#endif

bar.h

#ifndef BAR_H
#define BAR_H

#endif

foo.c

#include <stdio.h>
#include "foo.h"

int main() {

	return 0;
}

bar.c

#include <stdio.h>
#include "bar.h"

int main() {

	return 0;
}

About

A simple utility to generate .h and .c files based on the given file name

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages