Skip to content

Commit

Permalink
examples: rename examples to make more sense
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed Aug 2, 2023
1 parent d74ce68 commit d5bca7d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/list_files.c → examples/list_dir.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @author Enno Boland ([email protected])
* @file list_files.c
* @file list_dir.c
*
* This is an example program that lists the top level files in a squashfs
* archive.
Expand Down
2 changes: 1 addition & 1 deletion examples/list_files_ll.c → examples/list_dir_ll.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @author Enno Boland ([email protected])
* @file list_files_ll.c
* @file list_dir_ll.c
*
* This is an example program that lists the top level files in a squashfs
* archive. It uses low level variants of the API.
Expand Down
8 changes: 4 additions & 4 deletions examples/meson.build
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
executable(
'list_files',
'list_files.c',
'list_dir',
'list_dir.c',
install: false,
dependencies: libsqsh_dep,
)
executable(
'list_files_ll',
'list_files_ll.c',
'list_dir_ll',
'list_dir_ll.c',
install: false,
dependencies: libsqsh_dep,
)
Expand Down
2 changes: 1 addition & 1 deletion examples/read_file.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @author Enno Boland ([email protected])
* @file list_files.c
* @file read_file.c
*
* This is an example program that prints the content of a file in a squashfs
* archive.
Expand Down
2 changes: 1 addition & 1 deletion examples/read_file_ll.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @author Enno Boland ([email protected])
* @file list_files_ll.c
* @file read_file_ll.c
*
* This is an example program that prints the content of a file in a squashfs
* archive. It uses low level variants of the API.
Expand Down

0 comments on commit d5bca7d

Please sign in to comment.