mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
1008: Moved the definition of the big_files_offset to the form.c.
This commit is contained in:
parent
5458346e6e
commit
9f768354b9
@ -193,13 +193,6 @@ struct uri_list {
|
|||||||
struct uri **uris;
|
struct uri **uris;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* I don't know where to put it. */
|
|
||||||
struct big_files_offset {
|
|
||||||
LIST_HEAD(struct big_files_offset);
|
|
||||||
int begin;
|
|
||||||
int end;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define foreach_uri(uri, index, list) \
|
#define foreach_uri(uri, index, list) \
|
||||||
for (index = 0; index < (list)->size; index++) \
|
for (index = 0; index < (list)->size; index++) \
|
||||||
if ((uri = (list)->uris[index]))
|
if ((uri = (list)->uris[index]))
|
||||||
|
@ -58,6 +58,13 @@
|
|||||||
/* TODO: Some of these (particulary those encoding routines) would feel better
|
/* TODO: Some of these (particulary those encoding routines) would feel better
|
||||||
* in viewer/common/. --pasky */
|
* in viewer/common/. --pasky */
|
||||||
|
|
||||||
|
struct big_files_offset {
|
||||||
|
LIST_HEAD(struct big_files_offset);
|
||||||
|
int begin;
|
||||||
|
int end;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/** @relates submitted_value */
|
/** @relates submitted_value */
|
||||||
|
|
||||||
struct submitted_value *
|
struct submitted_value *
|
||||||
|
Loading…
Reference in New Issue
Block a user