aboutsummaryrefslogtreecommitdiffstats
path: root/src/sim
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-06-20 04:35:06 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-06-23 00:18:23 +0000
commit17518fe393a37781c84d09836256bb1a6256032b (patch)
tree6a39eb3b0b86fa7407ea04a00410aaa1b588d3d3 /src/sim
parent33370cb18d3dda2bccbf2648f40d9614693ed0ea (diff)
doxygen: unify use of \file across the board
Considering the various styles and implications found in the sources, edit scores of files to follow the same API doc guidelines around the doxygen grouping and the \file tag. Many files now show a short description in the generated API doc that was so far only available as C comment. The guidelines and reasoning behind it is documented at https://osmocom.org/projects/cellular-infrastructure/wiki/Guidelines_for_API_documentation In some instances, remove file comments and add to the corresponding group instead, to be shared among several files (e.g. bitvec). Change-Id: Ifa70e77e90462b5eb2b0457c70fd25275910c72b
Diffstat (limited to 'src/sim')
-rw-r--r--src/sim/card_fs_isim.c3
-rw-r--r--src/sim/card_fs_sim.c3
-rw-r--r--src/sim/card_fs_tetra.c3
-rw-r--r--src/sim/card_fs_uicc.c3
-rw-r--r--src/sim/card_fs_usim.c3
-rw-r--r--src/sim/class_tables.c5
-rw-r--r--src/sim/core.c3
-rw-r--r--src/sim/gsm_int.h2
-rw-r--r--src/sim/reader.c3
-rw-r--r--src/sim/reader_pcsc.c3
-rw-r--r--src/sim/sim_int.h2
11 files changed, 23 insertions, 10 deletions
diff --git a/src/sim/card_fs_isim.c b/src/sim/card_fs_isim.c
index 339e8627..1073429b 100644
--- a/src/sim/card_fs_isim.c
+++ b/src/sim/card_fs_isim.c
@@ -1,4 +1,5 @@
-/* 3GPP ISIM specific structures / routines */
+/*! \file card_fs_isim.c
+ * 3GPP ISIM specific structures / routines. */
/*
* (C) 2014 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/card_fs_sim.c b/src/sim/card_fs_sim.c
index 432c945b..1411129d 100644
--- a/src/sim/card_fs_sim.c
+++ b/src/sim/card_fs_sim.c
@@ -1,4 +1,5 @@
-/* classic SIM card specific structures/routines */
+/*! \file card_fs_sim.c
+ * classic SIM card specific structures/routines. */
/*
* (C) 2012-2014 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/card_fs_tetra.c b/src/sim/card_fs_tetra.c
index 657e55f7..80f3284e 100644
--- a/src/sim/card_fs_tetra.c
+++ b/src/sim/card_fs_tetra.c
@@ -1,4 +1,5 @@
-/* TETRA SIM card specific structures/routines */
+/*! \file card_fs_tetra.c
+ * TETRA SIM card specific structures/routines. */
/*
* (C) 2014 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/card_fs_uicc.c b/src/sim/card_fs_uicc.c
index 27afe34a..8ff89364 100644
--- a/src/sim/card_fs_uicc.c
+++ b/src/sim/card_fs_uicc.c
@@ -1,4 +1,5 @@
-/* ETSI UICC specific structures / routines */
+/*! \file card_fs_uicc.c
+ * ETSI UICC specific structures / routines. */
/*
* (C) 2012 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/card_fs_usim.c b/src/sim/card_fs_usim.c
index 22c193f8..9e9fc878 100644
--- a/src/sim/card_fs_usim.c
+++ b/src/sim/card_fs_usim.c
@@ -1,4 +1,5 @@
-/* 3GPP USIM specific structures / routines */
+/*! \file card_fs_usim.c
+ * 3GPP USIM specific structures / routines. */
/*
* (C) 2012-2014 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/class_tables.c b/src/sim/class_tables.c
index c3e18d82..fcf67f05 100644
--- a/src/sim/class_tables.c
+++ b/src/sim/class_tables.c
@@ -1,5 +1,6 @@
-/* simtrace - tables determining APDU case for card emulation
- *
+/*! \file class_tables.c
+ * simtrace - tables determining APDU case for card emulation. */
+/*
* (C) 2016 by Harald Welte <laforge@gnumonks.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/sim/core.c b/src/sim/core.c
index 15a15636..8da839c0 100644
--- a/src/sim/core.c
+++ b/src/sim/core.c
@@ -1,4 +1,5 @@
-/* Core routines for SIM/UICC/USIM access */
+/*! \file core.c
+ * Core routines for SIM/UICC/USIM access. */
/*
* (C) 2012 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/gsm_int.h b/src/sim/gsm_int.h
index 54a2fbf2..42ccca72 100644
--- a/src/sim/gsm_int.h
+++ b/src/sim/gsm_int.h
@@ -1,3 +1,5 @@
+/*! \file gsm_int.h */
+
#include <sys/types.h>
#include <osmocom/sim/sim.h>
diff --git a/src/sim/reader.c b/src/sim/reader.c
index e7169b5a..f39829b4 100644
--- a/src/sim/reader.c
+++ b/src/sim/reader.c
@@ -1,4 +1,5 @@
-/* Card reader abstraction for libosmosim */
+/*! \file reader.c
+ * Card reader abstraction for libosmosim. */
/*
* (C) 2012 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/reader_pcsc.c b/src/sim/reader_pcsc.c
index f020142e..5b296387 100644
--- a/src/sim/reader_pcsc.c
+++ b/src/sim/reader_pcsc.c
@@ -1,4 +1,5 @@
-/* PC/SC Card reader backend for libosmosim */
+/*! \file reader_pcsc.c
+ * PC/SC Card reader backend for libosmosim. */
/*
* (C) 2012 by Harald Welte <laforge@gnumonks.org>
*
diff --git a/src/sim/sim_int.h b/src/sim/sim_int.h
index 7b07b834..885011ed 100644
--- a/src/sim/sim_int.h
+++ b/src/sim/sim_int.h
@@ -1,3 +1,5 @@
+/*! \file sim_int.h */
+
#ifndef _SIM_INT_H
#include <osmocom/sim/sim.h>