Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
T
time-slime
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Michael Rouse
time-slime
Commits
e088d8e1
Commit
e088d8e1
authored
Aug 14, 2018
by
Michael Rouse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial project structure
parent
ad0e603d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
0 deletions
+41
-0
.gitignore
.gitignore
+2
-0
include/timeslime.h
include/timeslime.h
+11
-0
makefile
makefile
+13
-0
src/timeslime.c
src/timeslime.c
+15
-0
No files found.
.gitignore
View file @
e088d8e1
*.exe
# Prerequisites
*.d
...
...
include/timeslime.h
0 → 100644
View file @
e088d8e1
/**
* Time Slime - Command Line Time Sheet
*
* Authors: Michael Rouse
*/
#ifndef __TIME_SLIME_H__
#define __TIME_SLIME_H__
#endif
\ No newline at end of file
makefile
0 → 100644
View file @
e088d8e1
# Time Slime Make File
CC
=
gcc
CFLAGS
=
-g
-Wall
LANGUAGE_FLAGS
=
-x
c
OUT
=
timeslime
# Files to compile (for all targets)
SOURCES
=
./src/timeslime.c
all
:
$(CC)
$(CFLAGS)
$(LANGUAGE_FLAGS)
$(SOURCES)
-o
$(OUT)
src/timeslime.c
0 → 100644
View file @
e088d8e1
/**
* Time Slime - Command Line Time Sheet
*
* Authors: Michael Rouse
*/
#include <stdio.h>
#include "../include/timeslime.h"
int
main
(
void
)
{
printf
(
"Hello World!"
);
return
0
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment