Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
open-source-case-studies
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
open-source-case-studies
Merge requests
!6
Feature/new cgc
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Feature/new cgc
feature/new-cgc
into
master
Overview
3
Commits
22
Pipelines
0
Changes
145
Open
Dario Pinto
requested to merge
feature/new-cgc
into
master
4 years ago
Overview
3
Commits
22
Pipelines
0
Changes
29
Expand
0
0
Merge request reports
Compare
version 6
version 16
6f9d83d2
4 years ago
version 15
dc74d1ee
4 years ago
version 14
1fec1386
4 years ago
version 13
83a31df7
4 years ago
version 12
90c39364
4 years ago
version 11
a62db1a6
4 years ago
version 10
4de2623b
4 years ago
version 9
2e4ee208
4 years ago
version 8
5dff3999
4 years ago
version 7
cd4d2cbc
4 years ago
version 6
7c230a01
4 years ago
version 5
711195fc
4 years ago
version 4
682b3bd2
4 years ago
version 3
26509386
4 years ago
version 2
9b0ef155
4 years ago
version 1
5ad96422
4 years ago
master (HEAD)
and
version 9
latest version
6f9d83d2
22 commits,
2 years ago
version 16
6f9d83d2
22 commits,
4 years ago
version 15
dc74d1ee
21 commits,
4 years ago
version 14
1fec1386
21 commits,
4 years ago
version 13
83a31df7
20 commits,
4 years ago
version 12
90c39364
19 commits,
4 years ago
version 11
a62db1a6
18 commits,
4 years ago
version 10
4de2623b
18 commits,
4 years ago
version 9
2e4ee208
17 commits,
4 years ago
version 8
5dff3999
17 commits,
4 years ago
version 7
cd4d2cbc
17 commits,
4 years ago
version 6
7c230a01
16 commits,
4 years ago
version 5
711195fc
13 commits,
4 years ago
version 4
682b3bd2
12 commits,
4 years ago
version 3
26509386
10 commits,
4 years ago
version 2
9b0ef155
9 commits,
4 years ago
version 1
5ad96422
9 commits,
4 years ago
Show latest version
29 files
+
2852
−
1833
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
Expand all files
Files
29
Search (e.g. *.vue) (Ctrl+P)
cgc-challenges/GreatView/include/cgc_stdint.h deleted
100644 → 0
+
0
−
38
Options
/*
* Copyright (C) Narf Industries <info@narfindustries.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef STDINT_H
#define STDINT_H
#define FALSE 0
#define true 1
#define false 0
#define uint64_t unsigned long long
#define uint32_t unsigned int
#define uint16_t unsigned short
#define uint8_t unsigned char
#define bool uint8_t
#define int32_t int
#define int16_t short
#define int8_t char
#endif
Loading