Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hqr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
solverstack
hqr
Commits
067a8d61
Commit
067a8d61
authored
8 years ago
by
BOUCHERIE Raphael
Browse files
Options
Downloads
Patches
Plain Diff
Formatting
parent
3f479528
No related branches found
No related tags found
1 merge request
!3
Treewalk
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/common.h
+2
-2
2 additions, 2 deletions
include/common.h
include/libhqr.h
+2
-2
2 additions, 2 deletions
include/libhqr.h
include/queue.h
+11
-11
11 additions, 11 deletions
include/queue.h
with
15 additions
and
15 deletions
include/common.h
+
2
−
2
View file @
067a8d61
...
@@ -27,8 +27,8 @@
...
@@ -27,8 +27,8 @@
# define BEGIN_C_DECLS extern "C" {
# define BEGIN_C_DECLS extern "C" {
# define END_C_DECLS }
# define END_C_DECLS }
#else
#else
#define BEGIN_C_DECLS
/* empty */
#
define BEGIN_C_DECLS
/* empty */
#define END_C_DECLS
/* empty */
#
define END_C_DECLS
/* empty */
#endif
#endif
#endif
/* _COMMON_H_ */
#endif
/* _COMMON_H_ */
This diff is collapsed.
Click to expand it.
include/libhqr.h
+
2
−
2
View file @
067a8d61
...
@@ -15,11 +15,11 @@
...
@@ -15,11 +15,11 @@
* @date 2017-03-21
* @date 2017-03-21
*
*
*/
*/
#include
"common.h"
#ifndef _LIBHQR_H_
#ifndef _LIBHQR_H_
#define _LIBHQR_H_
#define _LIBHQR_H_
#include
"common.h"
BEGIN_C_DECLS
BEGIN_C_DECLS
static
inline
int
libhqr_imin
(
int
a
,
int
b
){
static
inline
int
libhqr_imin
(
int
a
,
int
b
){
...
...
This diff is collapsed.
Click to expand it.
include/queue.h
+
11
−
11
View file @
067a8d61
...
@@ -11,27 +11,27 @@
...
@@ -11,27 +11,27 @@
* @date 2017-03-21
* @date 2017-03-21
*
*
*/
*/
#include
"common.h"
#ifndef _QUEUE_H_
#ifndef _QUEUE_H_
#define _QUEUE_H_
#define _QUEUE_H_
#include
"common.h"
BEGIN_C_DECLS
BEGIN_C_DECLS
typedef
struct
libhqr_queue_tile_s
{
typedef
struct
libhqr_queue_tile_s
{
struct
libhqr_queue_tile_s
*
prev
;
struct
libhqr_queue_tile_s
*
prev
;
struct
libhqr_queue_tile_s
*
next
;
struct
libhqr_queue_tile_s
*
next
;
int
numero
;
int
numero
;
}
libhqr_queue_tile_t
;
}
libhqr_queue_tile_t
;
libhqr_queue_tile_t
*
libhqr_queue_tile_new
(
void
);
libhqr_queue_tile_t
*
libhqr_queue_tile_new
(
void
);
void
libhqr_queue_tile_post
(
libhqr_queue_tile_t
**
queue_tile
,
int
numero
);
void
libhqr_queue_tile_post
(
libhqr_queue_tile_t
**
queue_tile
,
int
numero
);
int
libhqr_queue_tile_get
(
libhqr_queue_tile_t
**
queue_tile
);
int
libhqr_queue_tile_get
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_delete
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_delete
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_first
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_first
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_prev
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_prev
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_last
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_last
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_next
(
libhqr_queue_tile_t
**
queue_tile
);
void
libhqr_queue_tile_next
(
libhqr_queue_tile_t
**
queue_tile
);
END_C_DECLS
END_C_DECLS
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment