sim: Add osim_file_find_{fid,sfid}() functions

We don't always want to look-up by name, but the latter is the only
implemented 'find' function so far.  Let's change that.
diff --git a/src/sim/core.c b/src/sim/core.c
index 890df66..ddddc7d 100644
--- a/src/sim/core.c
+++ b/src/sim/core.c
@@ -183,6 +183,31 @@
 	return NULL;
 }
 
+struct osim_file_desc *
+osim_file_find_fid(struct osim_file_desc *parent, uint16_t fid)
+{
+	struct osim_file_desc *ofd;
+	llist_for_each_entry(ofd, &parent->child_list, list) {
+		if (ofd->fid == fid) {
+			return ofd;
+		}
+	}
+	return NULL;
+}
+
+struct osim_file_desc *
+osim_file_find_sfid(struct osim_file_desc *parent, uint8_t sfid)
+{
+	struct osim_file_desc *ofd;
+	llist_for_each_entry(ofd, &parent->child_list, list) {
+		if (ofd->sfid == sfid) {
+			return ofd;
+		}
+	}
+	return NULL;
+}
+
+
 /*! \brief Generate an APDU message and initialize APDU command header
  *  \param[in] cla CLASS byte
  *  \param[in] ins INSTRUCTION byte