Skip to content

Commit 9ac5d83

Browse files
committed
feat: split out quickjs.c into multiple files
1 parent cca0433 commit 9ac5d83

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+60325
-59024
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

include/quickjs/libunicode-table.h

Lines changed: 4368 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.

list.h renamed to include/quickjs/list.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Linux klist like system
3-
*
3+
*
44
* Copyright (c) 2016-2017 Fabrice Bellard
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -28,6 +28,8 @@
2828
#include <stddef.h>
2929
#endif
3030

31+
#include <stdio.h>
32+
3133
struct list_head {
3234
struct list_head *prev;
3335
struct list_head *next;
@@ -46,7 +48,7 @@ static inline void init_list_head(struct list_head *head)
4648
}
4749

4850
/* insert 'el' between 'prev' and 'next' */
49-
static inline void __list_add(struct list_head *el,
51+
static inline void __list_add(struct list_head *el,
5052
struct list_head *prev, struct list_head *next)
5153
{
5254
prev->next = el;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)